Method RemoveAll
- Namespace
- GuildWars2.Collections
- Assembly
- GuildWars2.dll
RemoveAll(Predicate<T>)
Creates a new ImmutableValueList<T> with all elements that match the conditions defined by the specified predicate removed.
public ImmutableValueList<T> RemoveAll(Predicate<T> match)
Parameters
matchPredicate<T>The predicate that defines the conditions of the elements to remove.
Returns
- ImmutableValueList<T>
A new list with the matching elements removed.