[]
Retrieves all the elements that match the conditions defined by the specified predicate.
public StructList<T> FindAll(StructPredicate<T> match)
Public Function FindAll(match As StructPredicate(Of T)) As StructList(Of T)
Type | Name | Description |
---|---|---|
StructPredicate<T> | match | The StructPredicate<T> delegate that defines the conditions of the elements to search for. |
Type | Description |
---|---|
StructList<T> | A StructList<T> containing all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty StructList<T>. |