#ifndef PAIR_H #define PAIR_H /*************************************************************************/ /* pair.h */ /* From https://github.com/Relintai/pandemonium_engine (MIT) */ /*************************************************************************/ //--STRIP #include "core/hashfuncs.h" #include "core/typedefs.h" //--STRIP template struct Pair { F first; S second; Pair() : first(), second() { } Pair(F p_first, const S &p_second) : first(p_first), second(p_second) { } }; template bool operator==(const Pair &pair, const Pair &other) { return (pair.first == other.first) && (pair.second == other.second); } template bool operator!=(const Pair &pair, const Pair &other) { return (pair.first != other.first) || (pair.second != other.second); } template struct PairSort { bool operator()(const Pair &A, const Pair &B) const { if (A.first != B.first) { return A.first < B.first; } return A.second < B.second; } }; template struct PairHash { static uint32_t hash(const Pair &P) { uint64_t h1 = HashMapHasherDefault::hash(P.first); uint64_t h2 = HashMapHasherDefault::hash(P.second); return hash_one_uint64((h1 << 32) | h2); } }; template struct KeyValue { const K key; V value; void operator=(const KeyValue &p_kv) = delete; _FORCE_INLINE_ KeyValue(const KeyValue &p_kv) : key(p_kv.key), value(p_kv.value) { } _FORCE_INLINE_ KeyValue(const K &p_key, const V &p_value) : key(p_key), value(p_value) { } }; template bool operator==(const KeyValue &pair, const KeyValue &other) { return (pair.key == other.key) && (pair.value == other.value); } template bool operator!=(const KeyValue &pair, const KeyValue &other) { return (pair.key != other.key) || (pair.value != other.value); } template struct KeyValueSort { bool operator()(const KeyValue &A, const KeyValue &B) const { return A.key < B.key; } }; #endif // PAIR_H