std::ratio_equal (3) Linux Manual Page
std::ratio_equal – std::ratio_equal Synopsis Defined in header<ratio> template <class R1, class R2> (since C++ 11) struct ratio_equal : std::integral_constant; If the ratios R1 and R2 are equal, provides the member constant value equal true. Otherwise, value is false. Helper variable template template< class R1, class R2 > (since C++17) inline constexpr bool ratio_equal_v = ratio_equal<R1,…
