ΒΆtemplate <typename T>
typename std::enable_if<
    !is_hashable_data<T>::value,
    size_t>::type
get_hashable_data(const T& value)

Description

Helper to get the hashable data representation for a type. This variant is enabled when we must first call hash_value and use the result as our data.

Declared at: llvm/include/llvm/ADT/Hashing.h:372

Templates

T

Parameters

const T& value