ImmutableArrayExtensions.Last メソッド

定義

オーバーロード

Last<T>(ImmutableArray<T>.Builder)

コレクション内の最後の要素を返します。

Last<T>(ImmutableArray<T>, Func<T,Boolean>)

指定された条件を満たす、シーケンスの最後の要素を返します。

Last<T>(ImmutableArray<T>)

配列の最後の要素を返します。

Last<T>(ImmutableArray<T>.Builder)

ソース:
ImmutableArrayExtensions.cs
ソース:
ImmutableArrayExtensions.cs
ソース:
ImmutableArrayExtensions.cs

コレクション内の最後の要素を返します。

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>)

ソース:
ImmutableArrayExtensions.cs
ソース:
ImmutableArrayExtensions.cs
ソース:
ImmutableArrayExtensions.cs

指定された条件を満たす、シーケンスの最後の要素を返します。

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>

取得する要素が格納されている配列。

predicate
Func<T,Boolean>

取得する要素の条件を定義するデリゲート。

戻り値

T

predicate 条件を満たす、配列の最後の要素。

例外

コレクションが空です。

適用対象

Last<T>(ImmutableArray<T>)

ソース:
ImmutableArrayExtensions.cs
ソース:
ImmutableArrayExtensions.cs
ソース:
ImmutableArrayExtensions.cs

配列の最後の要素を返します。

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

配列内の最後の要素。

例外

コレクションが空です。

適用対象