8375285: Added versions.

This commit is contained in:
Anton Artemov 2026-01-27 10:13:20 +01:00
parent d6ed1b896b
commit ed1d4d3c94
2 changed files with 2 additions and 0 deletions

View File

@ -2782,6 +2782,7 @@ public final class Math {
* </ul>
* @param x The number whose inverse hyperbolic sine is to be returned.
* @return The inverse hyperbolic sine of {@code x}.
* @since 27
*/
public static double asinh(double x) {
return StrictMath.asinh(x);

View File

@ -2193,6 +2193,7 @@ public final class StrictMath {
* </ul>
* @param x The number whose inverse hyperbolic sine is to be returned.
* @return The inverse hyperbolic sine of {@code x}.
* @since 27
*/
public static double asinh(double x) {
return FdLibm.Asinh.compute(x);