mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8285977: Add links to IEEE 754 specification
Reviewed-by: jjg, iris, bpb
This commit is contained in:
parent
4434c7df03
commit
3cbf769f55
7 changed files with 22 additions and 1 deletions
|
@ -147,6 +147,9 @@ import jdk.internal.vm.annotation.IntrinsicCandidate;
|
||||||
* @jls 15.21.1 Numerical Equality Operators == and !=
|
* @jls 15.21.1 Numerical Equality Operators == and !=
|
||||||
* @jls 15.20.1 Numerical Comparison Operators {@code <}, {@code <=}, {@code >}, and {@code >=}
|
* @jls 15.20.1 Numerical Comparison Operators {@code <}, {@code <=}, {@code >}, and {@code >=}
|
||||||
*
|
*
|
||||||
|
* @see <a href="https://standards.ieee.org/ieee/754/6210/">
|
||||||
|
* <cite>IEEE Standard for Floating-Point Arithmetic</cite></a>
|
||||||
|
*
|
||||||
* @author Lee Boynton
|
* @author Lee Boynton
|
||||||
* @author Arthur van Hoff
|
* @author Arthur van Hoff
|
||||||
* @author Joseph D. Darcy
|
* @author Joseph D. Darcy
|
||||||
|
|
|
@ -59,6 +59,9 @@ import jdk.internal.vm.annotation.IntrinsicCandidate;
|
||||||
* equivalence, and comparison of floating-point values</a> that is
|
* equivalence, and comparison of floating-point values</a> that is
|
||||||
* equally applicable to {@code float} values.
|
* equally applicable to {@code float} values.
|
||||||
*
|
*
|
||||||
|
* @see <a href="https://standards.ieee.org/ieee/754/6210/">
|
||||||
|
* <cite>IEEE Standard for Floating-Point Arithmetic</cite></a>
|
||||||
|
*
|
||||||
* @author Lee Boynton
|
* @author Lee Boynton
|
||||||
* @author Arthur van Hoff
|
* @author Arthur van Hoff
|
||||||
* @author Joseph D. Darcy
|
* @author Joseph D. Darcy
|
||||||
|
|
|
@ -116,6 +116,9 @@ import jdk.internal.vm.annotation.IntrinsicCandidate;
|
||||||
* implementation condition than required for most of the methods in
|
* implementation condition than required for most of the methods in
|
||||||
* question that are also included in this class.
|
* question that are also included in this class.
|
||||||
*
|
*
|
||||||
|
* @see <a href="https://standards.ieee.org/ieee/754/6210/">
|
||||||
|
* <cite>IEEE Standard for Floating-Point Arithmetic</cite></a>
|
||||||
|
*
|
||||||
* @author Joseph D. Darcy
|
* @author Joseph D. Darcy
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -78,6 +78,9 @@ import jdk.internal.vm.annotation.IntrinsicCandidate;
|
||||||
* href="Math.html#Ieee754RecommendedOps">relate to the IEEE 754
|
* href="Math.html#Ieee754RecommendedOps">relate to the IEEE 754
|
||||||
* recommended operations</a>.
|
* recommended operations</a>.
|
||||||
*
|
*
|
||||||
|
* @see <a href="https://standards.ieee.org/ieee/754/6210/">
|
||||||
|
* <cite>IEEE Standard for Floating-Point Arithmetic</cite></a>
|
||||||
|
*
|
||||||
* @author Joseph D. Darcy
|
* @author Joseph D. Darcy
|
||||||
* @since 1.3
|
* @since 1.3
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -293,6 +293,9 @@ import java.util.Objects;
|
||||||
* @see RoundingMode
|
* @see RoundingMode
|
||||||
* @see java.util.SortedMap
|
* @see java.util.SortedMap
|
||||||
* @see java.util.SortedSet
|
* @see java.util.SortedSet
|
||||||
|
* @see <a href="https://standards.ieee.org/ieee/754/6210/">
|
||||||
|
* <cite>IEEE Standard for Floating-Point Arithmetic</cite></a>
|
||||||
|
*
|
||||||
* @author Josh Bloch
|
* @author Josh Bloch
|
||||||
* @author Mike Cowlishaw
|
* @author Mike Cowlishaw
|
||||||
* @author Joseph D. Darcy
|
* @author Joseph D. Darcy
|
||||||
|
|
|
@ -48,6 +48,9 @@ import java.io.*;
|
||||||
*
|
*
|
||||||
* @see BigDecimal
|
* @see BigDecimal
|
||||||
* @see RoundingMode
|
* @see RoundingMode
|
||||||
|
* @see <a href="https://standards.ieee.org/ieee/754/6210/">
|
||||||
|
* <cite>IEEE Standard for Floating-Point Arithmetic</cite></a>
|
||||||
|
*
|
||||||
* @author Mike Cowlishaw
|
* @author Mike Cowlishaw
|
||||||
* @author Joseph D. Darcy
|
* @author Joseph D. Darcy
|
||||||
* @since 1.5
|
* @since 1.5
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2003, 2021, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2003, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -96,6 +96,9 @@ package java.math;
|
||||||
*
|
*
|
||||||
* @see BigDecimal
|
* @see BigDecimal
|
||||||
* @see MathContext
|
* @see MathContext
|
||||||
|
* @see <a href="https://standards.ieee.org/ieee/754/6210/">
|
||||||
|
* <cite>IEEE Standard for Floating-Point Arithmetic</cite></a>
|
||||||
|
*
|
||||||
* @author Josh Bloch
|
* @author Josh Bloch
|
||||||
* @author Mike Cowlishaw
|
* @author Mike Cowlishaw
|
||||||
* @author Joseph D. Darcy
|
* @author Joseph D. Darcy
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue