| 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; |
nothing calls this directly
no outgoing calls
no test coverage detected