absl::AbslHashValue

Provides absl::Hash support for absl::InlinedVector. It is uncommon to call this directly.

Synopsis

Declared in <absl/container/inlined_vector.h>

template<
    typename H,
    typename T,
    size_t N,
    typename A>
H
AbslHashValue(
    H h,
    absl::InlinedVector<T, N, A> const& a);

Return Value

The combined hash state.

Parameters

NameDescription
hThe hash state to combine with.
aThe inlined vector to hash.