Function selectAll

#include <Geode/utils/map.hpp>template<class T,class R,class H>std::vector<R>selectAll(,)

Get all items in a map that match selectFunc.

Parameters

map

Map to check

selectFunc

Predicate run against each value in map; return true if the item matches what is being looked for, and false if not.
Return value
Vector of all values that matched.
Examples0