riemann_zeta -- <cmath> : 残りの数学関数を拡張浮動小数点数型に対応 #1022

1 · cpprefjp · Feb. 20, 2023, 6:33 a.m.
diff --git a/reference/cmath/riemann_zeta.md b/reference/cmath/riemann_zeta.md index f9763835d..b6a8981d5 100644 --- a/reference/cmath/riemann_zeta.md +++ b/reference/cmath/riemann_zeta.md @@ -7,15 +7,34 @@ ```cpp namespace std { -float riemann_zetaf(float x); -double riemann_zeta(double x); -long double riemann_zetal(long double x); + double + riemann_zeta(double x); // (1) C++17 + floating-point-type + riemann_zeta(floating-point-type x); // (1) C++23 + + Promoted + ...