Module |
|
Header |
/Engine/Source/Runtime/Core/Public/Containers/Map.h |
Include |
#include "Containers/Map.h" |
template<typename Predicate>
TMap< KeyType, ValueType, SetAllocator, KeyFuncs > FilterByPredicate
(
Predicate Pred
) const
Filters the elements in the map based on a predicate functor.
TMap with the same type as this object which contains the subset of elements for which the functor returns true.
Parameter |
Description |
---|---|
Pred |
The functor to apply to each element. |