[]
Determines whether every element in the StructList<T> matches the conditions defined by the specified predicate.
public bool TrueForAll(StructPredicate<T> match)
Public Function TrueForAll(match As StructPredicate(Of T)) As Boolean
Type | Name | Description |
---|---|---|
StructPredicate<T> | match | The StructPredicate<T> delegate that defines the conditions to check against the elements. |
Type | Description |
---|---|
bool | true if every element in the StructList<T> matches the conditions defined by the specified predicate; otherwise, false. If the list has no elements, the return value is true. |