CircularListTTrueForAll Method
Determines whether every element in the
CircularListT matches the conditions defined by the specified predicate.
Namespace: KGySoft.CollectionsAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public bool TrueForAll(
Predicate<T> match
)
Public Function TrueForAll (
match As Predicate(Of T)
) As Boolean
public:
bool TrueForAll(
Predicate<T>^ match
)
member TrueForAll :
match : Predicate<'T> -> bool
- match PredicateT
- The PredicateT delegate that defines the conditions to check against the elements.
Boolean if every element in the list matches the conditions defined by the specified predicate; otherwise,
.
If the list has no elements, the return value is
.