Skip to content

Commit

Permalink
Clarify that unrestricted doubles and floats include NaNs. (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobie committed Jul 30, 2017
1 parent 79cfa44 commit 44d0f24
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.bs
Expand Up @@ -5121,7 +5121,7 @@ The [=type name=] of the

The {{float}} type is a floating point numeric
type that corresponds to the set of finite single-precision 32 bit
IEEE 754 floating point numbers. [[!IEEE-754]]
IEEE 754 floating point numbers. [[!IEEE-754]]

{{float}} constant values in IDL are
represented with <emu-t class="regex"><a href="#prod-float">float</a></emu-t>
Expand All @@ -5143,7 +5143,7 @@ The [=type name=] of the

The {{unrestricted float}} type is a floating point numeric
type that corresponds to the set of all possible single-precision 32 bit
IEEE 754 floating point numbers, finite and non-finite. [[!IEEE-754]]
IEEE 754 floating point numbers, finite, non-finite, and special "not a number" values (NaNs). [[!IEEE-754]]

{{unrestricted float}} constant values in IDL are
represented with <emu-t class="regex"><a href="#prod-float">float</a></emu-t>
Expand All @@ -5157,7 +5157,7 @@ The [=type name=] of the

The {{double}} type is a floating point numeric
type that corresponds to the set of finite double-precision 64 bit
IEEE 754 floating point numbers. [[!IEEE-754]]
IEEE 754 floating point numbers. [[!IEEE-754]]

{{double}} constant values in IDL are
represented with <emu-t class="regex"><a href="#prod-float">float</a></emu-t>
Expand All @@ -5171,7 +5171,7 @@ The [=type name=] of the

The {{unrestricted double}} type is a floating point numeric
type that corresponds to the set of all possible double-precision 64 bit
IEEE 754 floating point numbers, finite and non-finite. [[!IEEE-754]]
IEEE 754 floating point numbers, finite, non-finite, and special "not a number" values (NaNs). [[!IEEE-754]]

{{unrestricted double}} constant values in IDL are
represented with <emu-t class="regex"><a href="#prod-float">float</a></emu-t>
Expand Down

0 comments on commit 44d0f24

Please sign in to comment.