Function contains

#include <Geode/utils/map.hpp>template<typename T,typename R,typename H>boolcontains(,)

Returns true if the map contains a value matching containFunc.

Parameters

map

Map to check

containFunc

Predicate run against each value in map; return true if the item matches what is being looked for, and false if not.
Return value
True if value matching `containFunc` was found, false if not.
Examples0