comp_ellint_2 -- <cmath> : 拡張浮動小数点数型への対応続き。途中で力尽きた #1022

1 · cpprefjp · Feb. 17, 2023, 10:33 a.m.
diff --git a/reference/cmath/comp_ellint_2.md b/reference/cmath/comp_ellint_2.md index 5cfcb4551..8768d2306 100644 --- a/reference/cmath/comp_ellint_2.md +++ b/reference/cmath/comp_ellint_2.md @@ -7,15 +7,34 @@ ```cpp namespace std { -float comp_ellint_2f(float k); -double comp_ellint_2(double k); -long double comp_ellint_2l(long double k); + double + comp_ellint_2(double k); // (1) C++17 + floating-point-type + comp_ellint_2(floating-point-type k); // (1) C++23 + + Pro...