| 55 | |
| 56 | template <class T> |
| 57 | inline void hash_combine(std::size_t& seed, const T& v) { |
| 58 | std::hash<T> hasher; |
| 59 | return ::arrow::internal::detail::hash_combine_impl(seed, hasher(v)); |
| 60 | } |
| 61 | |
| 62 | // END Hash utilities from Boost |
| 63 | // ---------------------------------------------------------------------- |
no test coverage detected