7 #if !defined(CNL_IMPL_FRACTION_HASH_H)
8 #define CNL_IMPL_FRACTION_HASH_H
10 #include "../../bit.h"
11 #include "../num_traits/width.h"
12 #include "canonical.h"
13 #include "definition.h"
19 template<
typename Numerator,
typename Denominator>
20 struct hash<
cnl::fraction<Numerator, Denominator>> {
26 std::is_integral_v<Numerator> && std::is_integral_v<Denominator>,
27 "std::hash<cnl::fractional<T>> - T must be an integer");
32 return from_canonical(cnl::_impl::canonical(value));
36 [[nodiscard]]
static constexpr
auto from_canonical(
39 return from_canonical_hashes(
40 hash<Numerator>{}(value.numerator), hash<Denominator>{}(value.denominator));
43 [[nodiscard]]
static constexpr
auto from_canonical_hashes(
size_t const n,
size_t const d)
45 return n ^ cnl::rotl(d, cnl::_impl::width<size_t> / 2);
50 #endif // CNL_IMPL_FRACTION_HASH_H