ImmutableArray.BinarySearch メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
BinarySearch<T>(ImmutableArray<T>, T) |
既定の比較子を使用して、並べ替えられた変更できない配列で、指定された要素を検索します。見つかった場合は、その要素の 0 から始まるインデックスを返します。 |
BinarySearch<T>(ImmutableArray<T>, T, IComparer<T>) |
並べ替えられた変更できない配列で、指定された要素を検索します。見つかった場合は、その要素の 0 から始まるインデックスを返します。 |
BinarySearch<T>(ImmutableArray<T>, Int32, Int32, T) |
並べ替えられた変更できない配列で、指定された要素を検索します。見つかった場合は、その要素の 0 から始まるインデックスを返します。 |
BinarySearch<T>(ImmutableArray<T>, Int32, Int32, T, IComparer<T>) |
並べ替えられた変更できない配列で、指定された要素を検索し、その要素のゼロから始まるインデックスを返します。 |
BinarySearch<T>(ImmutableArray<T>, T)
既定の比較子を使用して、並べ替えられた変更できない配列で、指定された要素を検索します。見つかった場合は、その要素の 0 から始まるインデックスを返します。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static int BinarySearch(System::Collections::Immutable::ImmutableArray<T> array, T value);
public static int BinarySearch<T> (this System.Collections.Immutable.ImmutableArray<T> array, T value);
static member BinarySearch : System.Collections.Immutable.ImmutableArray<'T> * 'T -> int
<Extension()>
Public Function BinarySearch(Of T) (array As ImmutableArray(Of T), value As T) As Integer
型パラメーター
- T
配列内に格納されている要素の型。
パラメーター
- array
- ImmutableArray<T>
検索する並べ替えられた配列。
- value
- T
検索するオブジェクト。
戻り値
項目が見つかった場合は、配列内の項目の 0 から始まるインデックス。見つからなかった場合は、負の値。これは、value
の次に大きい要素のインデックスのビットごとの補数です。ただし、大きい要素が存在しない場合は、Count のビットごとの補数です。
例外
value
が IComparable を実装していないか、または検索で IComparable を実装していない要素が検出されました。
適用対象
BinarySearch<T>(ImmutableArray<T>, T, IComparer<T>)
並べ替えられた変更できない配列で、指定された要素を検索します。見つかった場合は、その要素の 0 から始まるインデックスを返します。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static int BinarySearch(System::Collections::Immutable::ImmutableArray<T> array, T value, System::Collections::Generic::IComparer<T> ^ comparer);
public static int BinarySearch<T> (this System.Collections.Immutable.ImmutableArray<T> array, T value, System.Collections.Generic.IComparer<T> comparer);
public static int BinarySearch<T> (this System.Collections.Immutable.ImmutableArray<T> array, T value, System.Collections.Generic.IComparer<T>? comparer);
static member BinarySearch : System.Collections.Immutable.ImmutableArray<'T> * 'T * System.Collections.Generic.IComparer<'T> -> int
<Extension()>
Public Function BinarySearch(Of T) (array As ImmutableArray(Of T), value As T, comparer As IComparer(Of T)) As Integer
型パラメーター
- T
配列内に格納されている要素の型。
パラメーター
- array
- ImmutableArray<T>
検索する並べ替えられた配列。
- value
- T
検索するオブジェクト。
- comparer
- IComparer<T>
要素を比較する場合に使用する比較子実装。または、既定の比較子を使用する場合は null。
戻り値
項目が見つかった場合は、配列内の項目の 0 から始まるインデックス。見つからなかった場合は、負の値。これは、value
の次に大きい要素のインデックスのビットごとの補数です。ただし、大きい要素が存在しない場合は、Count のビットごとの補数です。
例外
comparer
が null であり value
が IComparable を実装していないか、または検索で IComparable を実装していない要素が検出されました。
適用対象
BinarySearch<T>(ImmutableArray<T>, Int32, Int32, T)
並べ替えられた変更できない配列で、指定された要素を検索します。見つかった場合は、その要素の 0 から始まるインデックスを返します。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static int BinarySearch(System::Collections::Immutable::ImmutableArray<T> array, int index, int length, T value);
public static int BinarySearch<T> (this System.Collections.Immutable.ImmutableArray<T> array, int index, int length, T value);
static member BinarySearch : System.Collections.Immutable.ImmutableArray<'T> * int * int * 'T -> int
<Extension()>
Public Function BinarySearch(Of T) (array As ImmutableArray(Of T), index As Integer, length As Integer, value As T) As Integer
型パラメーター
- T
配列内に格納されている要素の型。
パラメーター
- array
- ImmutableArray<T>
検索する並べ替えられた配列。
- index
- Int32
検索範囲の開始位置を示すインデックス。
- length
- Int32
検索する範囲の長さ。
- value
- T
検索するオブジェクト。
戻り値
項目が見つかった場合は、配列内の項目の 0 から始まるインデックス。見つからなかった場合は、負の値。これは、value
の次に大きい要素のインデックスのビットごとの補数です。ただし、大きい要素が存在しない場合は、Count のビットごとの補数です。
例外
value
が IComparable を実装していないか、または検索で IComparable を実装していない要素が検出されました。
index
および length
は array
の有効な範囲を指定していません。
適用対象
BinarySearch<T>(ImmutableArray<T>, Int32, Int32, T, IComparer<T>)
並べ替えられた変更できない配列で、指定された要素を検索し、その要素のゼロから始まるインデックスを返します。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static int BinarySearch(System::Collections::Immutable::ImmutableArray<T> array, int index, int length, T value, System::Collections::Generic::IComparer<T> ^ comparer);
public static int BinarySearch<T> (this System.Collections.Immutable.ImmutableArray<T> array, int index, int length, T value, System.Collections.Generic.IComparer<T> comparer);
public static int BinarySearch<T> (this System.Collections.Immutable.ImmutableArray<T> array, int index, int length, T value, System.Collections.Generic.IComparer<T>? comparer);
static member BinarySearch : System.Collections.Immutable.ImmutableArray<'T> * int * int * 'T * System.Collections.Generic.IComparer<'T> -> int
<Extension()>
Public Function BinarySearch(Of T) (array As ImmutableArray(Of T), index As Integer, length As Integer, value As T, comparer As IComparer(Of T)) As Integer
型パラメーター
- T
配列内に格納されている要素の型。
パラメーター
- array
- ImmutableArray<T>
検索する並べ替えられた配列。
- index
- Int32
検索範囲の開始位置を示すインデックス。
- length
- Int32
検索する範囲の長さ。
- value
- T
検索するオブジェクト。
- comparer
- IComparer<T>
要素の等値性を比較する場合に使用する比較子。または、既定の比較子を使用する場合は null
。
戻り値
項目が見つかった場合は、配列内の項目の 0 から始まるインデックス。見つからなかった場合は、負の値。これは、value
の次に大きい要素のインデックスのビットごとの補数です。ただし、大きい要素が存在しない場合は、Count のビットごとの補数です。
例外
comparer
が null であり value
が IComparable を実装していないか、または検索で IComparable を実装していない要素が検出されました。
index
および length
は array
の有効な範囲を指定していません。
- または -
comparer
が null
で、value
は array
の要素と互換性がない型です。
適用対象
.NET