ImmutableArrayExtensions.Where<T>(ImmutableArray<T>, Func<T,Boolean>) Metodo
Definizione
Filtra una sequenza di valori in base a un predicato.Filters a sequence of values based on a predicate.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<T> ^ Where(System::Collections::Immutable::ImmutableArray<T> immutableArray, Func<T, bool> ^ predicate);
public static System.Collections.Generic.IEnumerable<T> Where<T> (this System.Collections.Immutable.ImmutableArray<T> immutableArray, Func<T,bool> predicate);
public static System.Collections.Generic.IEnumerable<T> Where<T> (this System.Collections.Immutable.ImmutableArray<T>? immutableArray, Func<T,bool> predicate);
static member Where : System.Collections.Immutable.ImmutableArray<'T> * Func<'T, bool> -> seq<'T>
<Extension()>
Public Function Where(Of T) (immutableArray As ImmutableArray(Of T), predicate As Func(Of T, Boolean)) As IEnumerable(Of T)
Parametri di tipo
- T
Tipo di elemento contenuto dalla raccolta.The type of element contained by the collection.
Parametri
- immutableArray
- ImmutableArray<T>
Matrice da filtrare.The array to filter.
Condizione da usare per filtrare il contenuto della matrice.The condition to use for filtering the array content.
Restituisce
Restituisce IEnumerable<T> che contiene gli elementi che soddisfano la condizione.Returns IEnumerable<T> that contains elements that meet the condition.