Chris@102: // Boost.Range library Chris@102: // Chris@102: // Copyright Neil Groves 2014 Chris@102: // Use, modification and distribution is subject to the Boost Software Chris@102: // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at Chris@102: // http://www.boost.org/LICENSE_1_0.txt) Chris@102: // Chris@102: // For more information, see http://www.boost.org/libs/range/ Chris@102: // Chris@102: #include Chris@102: #include Chris@102: Chris@102: namespace boost Chris@102: { Chris@102: Chris@102: template Chris@102: std::size_t hash_value(const iterator_range& rng) Chris@102: { Chris@102: return boost::hash_range(rng.begin(), rng.end()); Chris@102: } Chris@102: Chris@102: } // namespace boost