MCPcopy Create free account
hub / github.com/Tessil/ordered-map / deserialize

Method deserialize

include/tsl/ordered_map.h:961–967  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

959 */
960 template <class Deserializer>
961 static ordered_map deserialize(Deserializer& deserializer,
962 bool hash_compatible = false) {
963 ordered_map map(0);
964 map.m_ht.deserialize(deserializer, hash_compatible);
965
966 return map;
967 }
968
969 friend bool operator==(const ordered_map& lhs, const ordered_map& rhs) {
970 return lhs.m_ht == rhs.m_ht;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected