#ifndef BOOST_HASH2_IS_CONTIGUOUSLY_HASHABLE_HPP_INCLUDED #define BOOST_HASH2_IS_CONTIGUOUSLY_HASHABLE_HPP_INCLUDED // Copyright 2017, 2023, 2024 Peter Dimov. // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt #include #include #include #include #include namespace boost { namespace hash2 { template struct is_contiguously_hashable: std::integral_constant::value && (E == endian::native || is_endian_independent::value)> { }; template struct is_contiguously_hashable: is_contiguously_hashable { }; } // namespace hash2 } // namespace boost #endif // #ifndef BOOST_HASH2_IS_CONTIGUOUSLY_HASHABLE_HPP_INCLUDED