ΒΆtemplate <typename InputIteratorT>
llvm::hash_code hash_combine_range(
    InputIteratorT first,
    InputIteratorT last)

Description

Compute a hash_code for a sequence of values. This hashes a sequence of values. It produces the same hash_code as 'hash_combine(a, b, c, ...)', but can run over arbitrary sized sequences and is significantly faster given pointers and types which can be hashed as a sequence of bytes.

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

Templates

InputIteratorT

Parameters

InputIteratorT first
InputIteratorT last