Function remap

#include <Geode/utils/map.hpp>template<class T1,class V1,class H1,class T2,class V2,class H2>std::unordered_map<T2,V2,H2>remap(,)

Transform an unordered_map into another unordered_map of a different type.

Parameters

map

Map to convert

remapFunc

Function that converts key-value pairs from the first map to the second
Return value
New map
Examples0