Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ImmutableList<T>::TrueForAll Method (Predicate<T>^)

 

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

Namespace:   System.Collections.Immutable
Assembly:  System.Collections.Immutable (in System.Collections.Immutable.dll)

public:
virtual bool TrueForAll(
	Predicate<T>^ match
) sealed

Parameters

match
Type: System::Predicate<T>^

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

Return Value

Type: System::Boolean

true if every element in the immutable list matches the conditions defined by the specified predicate; otherwise, false. If the list has no elements, the return value is true.

Return to top
Show:
© 2017 Microsoft