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
public IIndexedSorted<T> FindAll(Func<T, bool> filter)
Parameters
Type | Name | Description |
---|---|---|
Func<T, System.Boolean> | filter | The filter delegate defining the predicate. |
Returns
Type | Description |
---|---|
IIndexedSorted<T> | The new indexed sorted collection. |