Hash specialization for folly::indirect.
Declared in <folly/Indirect.h>
template<
typename T,
typename Alloc>
requires requires(const T& t) { std::hash<T>{}(t); }
struct hash<folly::indirect<T, Alloc>>;
Enabled only when hash<T> is enabled. Not guaranteed noexcept per spec.
| Name | Description |
|---|---|
operator() | Hashes a wrapper by its owned value. |