Lines Matching +full:26 +full:m
131 template <class M, class N>
132 constexpr common_type_t<M,N> gcd(M m, N n); // C++17
134 template <class M, class N>
135 constexpr common_type_t<M,N> lcm(M m, N n); // C++17
145 constexpr T add_sat(T x, T y) noexcept; // freestanding, Since C++26
147 constexpr T sub_sat(T x, T y) noexcept; // freestanding, Since C++26
149 constexpr T mul_sat(T x, T y) noexcept; // freestanding, Since C++26
151 constexpr T div_sat(T x, T y) noexcept; // freestanding, Since C++26
153 constexpr T saturate_cast(U x) noexcept; // freestanding, Since C++26