System::Collections::Generic::IEnumerable::LINQ_Where method

IEnumerable::LINQ_Where method

Filters a sequence based on the specified predicate.

SharedPtr<IEnumerable<T>> System::Collections::Generic::IEnumerable<T>::LINQ_Where(std::function<bool(T)> predicate)
ParameterTypeDescription
predicatestd::function<bool(T)>A function that test each elements for some condition.

ReturnValue

An IEnumerable that contains filtered elements.

See Also