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

1 · cpprefjp · Feb. 16, 2023, 9:33 a.m.
diff --git a/reference/cmath/fmin.md b/reference/cmath/fmin.md index ad1d547ab..d342f48a4 100644 --- a/reference/cmath/fmin.md +++ b/reference/cmath/fmin.md @@ -6,14 +6,31 @@ ```cpp namespace std { - float fmin(float x, float y); - double fmin(double x, double y); - long double fmin(long double x, long double y); - - Promoted fmin(Arithmetic1 x, Arithmetic2 y); - - float fminf(float x, float y); // C++17 から - long double fminl(long double x, long double y); // C++17 か...