MCPcopy Create free account
hub / github.com/Tracktion/choc / SimpleStringDictionary

Method SimpleStringDictionary

choc/containers/choc_Value.h:439–439  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

437struct SimpleStringDictionary : public StringDictionary
438{
439 SimpleStringDictionary() = default;
440 SimpleStringDictionary (const SimpleStringDictionary& other) : strings (other.strings), stringMap (other.stringMap) {}
441 SimpleStringDictionary (SimpleStringDictionary&& other) : strings (std::move (other.strings)), stringMap (std::move (other.stringMap)) {}
442 SimpleStringDictionary& operator= (const SimpleStringDictionary& other) { strings = other.strings; stringMap = other.stringMap; return *this; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected