ImmutableArray<T>::RemoveAll Method (Predicate<T>^)

 

Removes all the items from the array that meet the specified condition.

Namespace:   System.Collections.Immutable
Assembly:  System.Collections.Immutable (in System.Collections.Immutable.dll)

public:
ImmutableArray<T> RemoveAll(
	Predicate<T>^ match
)

Parameters

match
Type: System::Predicate<T>^

The delegate that defines the conditions of the elements to remove.

Return Value

Type: System.Collections.Immutable::ImmutableArray<T>

A new array with items that meet the specified condition removed.

Return to top
Show: