Method FindAll
FindAll(Func<T, Boolean>)
Create a new indexed sorted collection consisting of the items of this indexed sorted collection satisfying a certain predicate.
Declaration
IIndexedSorted<T> FindAll(Func<T, bool> predicate)
Parameters
Type | Name | Description |
---|---|---|
Func<T, System.Boolean> | predicate | The filter delegate defining the predicate. |
Returns
Type | Description |
---|---|
IIndexedSorted<T> | The new indexed sorted collection. |