CircularListTFindAll Method
Retrieves all the elements that match the conditions defined by the specified predicate.
Namespace: KGySoft.CollectionsAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public CircularList<T> FindAll(
Predicate<T> match
)
Public Function FindAll (
match As Predicate(Of T)
) As CircularList(Of T)
public:
CircularList<T>^ FindAll(
Predicate<T>^ match
)
member FindAll :
match : Predicate<'T> -> CircularList<'T>
- match PredicateT
- A delegate that defines the conditions of the element to search for.
CircularListTA
CircularListT containing all the elements that match the conditions defined by the specified predicate, if found;
otherwise, an empty
CircularListT.
This method is an O(n) operation.