Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template hash_range

boost::hash_range — Calculate combined hash value of the elements of an iterator range.

Synopsis

// In header: <boost/array.hpp>


template<typename It> std::size_t hash_range(It, It);

Description

Forward declaration for Boost.ContainerHash

Complexity. 

Linear

[Note] Note

This function is used to calculate the hash for an array

See Also:

hash_value

Returns:

combined hash value of the elements in the range


PrevUpHomeNext