CircularListTFindAll Method

Retrieves all the elements that match the conditions defined by the specified predicate.

Definition

Namespace: KGySoft.Collections
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
C#
public CircularList<T> FindAll(
	Predicate<T> match
)

Parameters

match  PredicateT
A delegate that defines the conditions of the element to search for.

Return Value

CircularListT
A CircularListT containing all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty CircularListT.

Remarks

This method is an O(n) operation.

See Also