Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045 #ifndef ABSL_CONTAINER_INTERNAL_HASH_FUNCTION_DEFAULTS_H_
00046 #define ABSL_CONTAINER_INTERNAL_HASH_FUNCTION_DEFAULTS_H_
00047
00048 #include <stdint.h>
00049 #include <cstddef>
00050 #include <memory>
00051 #include <string>
00052 #include <type_traits>
00053
00054 #include "absl/base/config.h"
00055 #include "absl/hash/hash.h"
00056 #include "absl/strings/string_view.h"
00057
00058 namespace absl {
00059 namespace container_internal {
00060
00061
00062 template <class T, class E = void>
00063 struct HashEq {
00064 using Hash = absl::Hash<T>;
00065 using Eq = std::equal_to<T>;
00066 };
00067
00068 struct StringHash {
00069 using is_transparent = void;
00070
00071 size_t operator()(absl::string_view v) const {
00072 return absl::Hash<absl::string_view>{}(v);
00073 }
00074 };
00075
00076
00077 struct StringHashEq {
00078 using Hash = StringHash;
00079 struct Eq {
00080 using is_transparent = void;
00081 bool operator()(absl::string_view lhs, absl::string_view rhs) const {
00082 return lhs == rhs;
00083 }
00084 };
00085 };
00086
00087 template <>
00088 struct HashEq<std::string> : StringHashEq {};
00089 template <>
00090 struct HashEq<absl::string_view> : StringHashEq {};
00091
00092
00093 template <class T>
00094 struct HashEq<T*> {
00095 struct Hash {
00096 using is_transparent = void;
00097 template <class U>
00098 size_t operator()(const U& ptr) const {
00099 return absl::Hash<const T*>{}(HashEq::ToPtr(ptr));
00100 }
00101 };
00102 struct Eq {
00103 using is_transparent = void;
00104 template <class A, class B>
00105 bool operator()(const A& a, const B& b) const {
00106 return HashEq::ToPtr(a) == HashEq::ToPtr(b);
00107 }
00108 };
00109
00110 private:
00111 static const T* ToPtr(const T* ptr) { return ptr; }
00112 template <class U, class D>
00113 static const T* ToPtr(const std::unique_ptr<U, D>& ptr) {
00114 return ptr.get();
00115 }
00116 template <class U>
00117 static const T* ToPtr(const std::shared_ptr<U>& ptr) {
00118 return ptr.get();
00119 }
00120 };
00121
00122 template <class T, class D>
00123 struct HashEq<std::unique_ptr<T, D>> : HashEq<T*> {};
00124 template <class T>
00125 struct HashEq<std::shared_ptr<T>> : HashEq<T*> {};
00126
00127
00128
00129
00130
00131 template <class T>
00132 using hash_default_hash = typename container_internal::HashEq<T>::Hash;
00133
00134
00135
00136
00137
00138 template <class T>
00139 using hash_default_eq = typename container_internal::HashEq<T>::Eq;
00140
00141 }
00142 }
00143
00144 #endif // ABSL_CONTAINER_INTERNAL_HASH_FUNCTION_DEFAULTS_H_