ImmutableArrayExtensions.Last メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
Last<T>(ImmutableArray<T>.Builder) |
コレクション内の最後の要素を返します。 |
Last<T>(ImmutableArray<T>, Func<T,Boolean>) |
指定された条件を満たす、シーケンスの最後の要素を返します。 |
Last<T>(ImmutableArray<T>) |
配列の最後の要素を返します。 |
Last<T>(ImmutableArray<T>.Builder)
コレクション内の最後の要素を返します。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T Last(System::Collections::Immutable::ImmutableArray<T>::Builder ^ builder);
public static T Last<T> (this System.Collections.Immutable.ImmutableArray<T>.Builder builder);
static member Last : System.Collections.Immutable.ImmutableArray<'T>.Builder -> 'T
<Extension()>
Public Function Last(Of T) (builder As ImmutableArray(Of T).Builder) As T
型パラメーター
- T
ビルダー内の項目の型。
パラメーター
- builder
- ImmutableArray<T>.Builder
取得する要素が含まれているビルダー。
戻り値
T
ビルダー内の最後の要素。
例外
コレクションが空です。
適用対象
Last<T>(ImmutableArray<T>, Func<T,Boolean>)
指定された条件を満たす、シーケンスの最後の要素を返します。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T Last(System::Collections::Immutable::ImmutableArray<T> immutableArray, Func<T, bool> ^ predicate);
public static T Last<T> (this System.Collections.Immutable.ImmutableArray<T> immutableArray, Func<T,bool> predicate);
static member Last : System.Collections.Immutable.ImmutableArray<'T> * Func<'T, bool> -> 'T
<Extension()>
Public Function Last(Of T) (immutableArray As ImmutableArray(Of T), predicate As Func(Of T, Boolean)) As T
型パラメーター
- T
コレクションに含まれる要素の型。
パラメーター
- immutableArray
- ImmutableArray<T>
取得する要素が格納されている配列。
戻り値
T
predicate
条件を満たす、配列の最後の要素。
例外
コレクションが空です。
適用対象
Last<T>(ImmutableArray<T>)
配列の最後の要素を返します。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T Last(System::Collections::Immutable::ImmutableArray<T> immutableArray);
public static T Last<T> (this System.Collections.Immutable.ImmutableArray<T> immutableArray);
static member Last : System.Collections.Immutable.ImmutableArray<'T> -> 'T
<Extension()>
Public Function Last(Of T) (immutableArray As ImmutableArray(Of T)) As T
型パラメーター
- T
配列に含まれる要素の型。
パラメーター
- immutableArray
- ImmutableArray<T>
取得する項目が格納されている配列。
戻り値
T
配列内の最後の要素。
例外
コレクションが空です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET