Click or drag to resize

AsyncReactiveListTRemoveAll Method

Removes all the elements that match the conditions defined by the specified predicate.

Namespace:  Kit.Containers
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0
Syntax
C#
public int RemoveAll(
	Predicate<T> match
)
Request Example View Source

Parameters

match
Type: SystemPredicateT
The PredicateT delegate that defines the conditions of the elements to remove.

Return Value

Type: Int32
The number of elements removed from the ListT .
Exceptions
ExceptionCondition
ArgumentNullExceptionmatch is .
See Also