| 414 | |
| 415 | template<class T, std::size_t N> |
| 416 | std::size_t hash_value(const array<T,N>& arr) |
| 417 | { |
| 418 | return boost::hash_range(arr.begin(), arr.end()); |
| 419 | } |
| 420 | |
| 421 | template <size_t Idx, typename T, size_t N> |
| 422 | T &get(boost::array<T,N> &arr) BOOST_NOEXCEPT { |
nothing calls this directly
no test coverage detected