CircularListTTrueForAll Method

Determines whether every element in the CircularListT matches the conditions defined by the specified predicate.

Definition

Namespace: KGySoft.Collections
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.1.0
C#
public bool TrueForAll(
	Predicate<T> match
)

Parameters

match  PredicateT
The PredicateT delegate that defines the conditions to check against the elements.

Return Value

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 .

See Also