MCPcopy Create free account
hub / github.com/CppMicroServices/CppMicroServices / AnyMap

Method AnyMap

framework/src/util/AnyMap.cpp:1154–1157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1152 // ------------------------ AnyMap ------------------------
1153
1154 AnyMap::AnyMap(std::initializer_list<any_map::value_type> l)
1155 : any_map(any_map::UNORDERED_MAP_CASEINSENSITIVE_KEYS, l)
1156 {
1157 }
1158 AnyMap::AnyMap(map_type type, std::initializer_list<any_map::value_type> l) : any_map(type, l) {}
1159
1160 AnyMap::AnyMap(ordered_any_map const& m) : any_map(m) {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected