remainder -- <cmath> : 残りのconstexpr対応 #1067

1 · cpprefjp · Feb. 16, 2023, 9:33 a.m.
diff --git a/reference/cmath/remainder.md b/reference/cmath/remainder.md index 435d83f58..54d5b3a54 100644 --- a/reference/cmath/remainder.md +++ b/reference/cmath/remainder.md @@ -6,14 +6,31 @@ ```cpp namespace std { - double remainder(double x, double y); - float remainder(float x, float y); - long double remainder(long double x, long double y); - - Integral remainder(Integral x, Integral y); - - float remainderf(float x, float y); // C++17 から - long double remainde...