template <class Container, typename Enabler = void>
struct HashtableDebugAccess
Defined at line 49 of file ../../third_party/abseil-cpp/absl/container/internal/hashtable_debug_hooks.h
Containers should specialize this to provide debug information for that
container.
Public Methods
size_t GetNumProbes (const Container & c, const typename Container::key_type & key)
Returns the number of probes required to find `key` in `c`. The "number of
probes" is a concept that can vary by container. Implementations should
return 0 when `key` was found in the minimum number of operations and
should increment the result for each non-trivial operation required to find
`key`.
The default implementation uses the bucket api from the standard and thus
works for `std::unordered_*` containers.
Defined at line 58 of file ../../third_party/abseil-cpp/absl/container/internal/hashtable_debug_hooks.h