'宣言 Function FindBetween( _ ByVal min As TKey, _ ByVal minInclusive As System.Boolean, _ ByVal max As TKey, _ ByVal maxInclusive As System.Boolean, _ ByVal keyPredicate As System.Func(Of TKey,Boolean), _ ByVal order As Order _ ) As IndexQuery(Of T,TKey)
IndexQuery<T,TKey> FindBetween( TKey min, System.bool minInclusive, TKey max, System.bool maxInclusive, System.Func<TKey,bool> keyPredicate, Order order )
パラメータ
- min
- 検索する最小キー値。
- minInclusive
- true の場合、結果には最小キー値を持つ項目が含まれます。
- max
- 検索する最大キー値。
- maxInclusive
- true の場合、結果には最大キー値を持つ項目が含まれます。
- keyPredicate
- 検索する項目が満たす必要があるオプションの条件。
- order
- オプションで、結果をソートするキー値の順序を指定します(ソートが不要な場合は C1.LiveLinq.Order.Unordered)。
戻り値の型
指定された範囲内にキー値があるすべての項目を列挙するオブジェクト。