ImmutableList<T>.Builder.ConvertAll<TOutput> メソッド

定義

コンバーター関数を使用して、このビルダーによって表されるリストから、新しい変更できないリストを作成します。

public:
generic <typename TOutput>
 virtual System::Collections::Immutable::ImmutableList<TOutput> ^ ConvertAll(Func<T, TOutput> ^ converter);
public:
generic <typename TOutput>
 System::Collections::Immutable::ImmutableList<TOutput> ^ ConvertAll(Func<T, TOutput> ^ converter);
public System.Collections.Immutable.ImmutableList<TOutput> ConvertAll<TOutput> (Func<T,TOutput> converter);
abstract member ConvertAll : Func<'T, 'Output> -> System.Collections.Immutable.ImmutableList<'Output>
override this.ConvertAll : Func<'T, 'Output> -> System.Collections.Immutable.ImmutableList<'Output>
member this.ConvertAll : Func<'T, 'Output> -> System.Collections.Immutable.ImmutableList<'Output>
Public Function ConvertAll(Of TOutput) (converter As Func(Of T, TOutput)) As ImmutableList(Of TOutput)

型パラメーター

TOutput

デリゲート コンバーター関数の出力の型。

パラメーター

converter
Func<T,TOutput>

コンバーター関数。

戻り値

ImmutableList<TOutput>

このビルダーによって表されるリストから作成した、新しい変更できないリスト。

適用対象