Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 35 additions & 36 deletions source/support.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1143,10 +1143,10 @@
\begin{itemdescr}
\pnum
Minimum finite value.
\begin{footnote}
\begin{example}
Equivalent to \tcode{CHAR_MIN}, \tcode{SHRT_MIN},
\tcode{FLT_MIN}, \tcode{DBL_MIN}, etc.
\end{footnote}
\end{example}

\indextext{number!subnormal}%
\pnum
Expand All @@ -1168,10 +1168,10 @@
\begin{itemdescr}
\pnum
Maximum finite value.
\begin{footnote}
\begin{example}
Equivalent to \tcode{CHAR_MAX}, \tcode{SHRT_MAX},
\tcode{FLT_MAX}, \tcode{DBL_MAX}, etc.
\end{footnote}
\end{example}

\pnum
Meaningful for all specializations in which
Expand All @@ -1187,11 +1187,11 @@
\pnum
A finite value \tcode{x} such that there is no other finite
value \tcode{y} where \tcode{y < x}.
\begin{footnote}
\begin{note}
\tcode{lowest()} is necessary because not all
floating-point representations have a smallest (most negative) value that is
the negative of the largest (most positive) finite value.
\end{footnote}
\end{note}

\pnum
Meaningful for all specializations in which \tcode{is_bounded != false}.
Expand All @@ -1214,10 +1214,10 @@
\pnum
For floating-point types, the number of \tcode{radix} digits in the
significand.
\begin{footnote}
\begin{example}
Equivalent to \tcode{FLT_MANT_DIG}, \tcode{DBL_MANT_DIG},
\tcode{LDBL_MANT_DIG}.
\end{footnote}
\tcode{LDBL_MANT_DIG}, etc.
\end{example}
\end{itemdescr}

\indexlibrarymember{digits10}{numeric_limits}%
Expand All @@ -1229,10 +1229,10 @@
\pnum
Number of base 10 digits that can be represented without
change.
\begin{footnote}
\begin{example}
Equivalent to \tcode{FLT_DIG}, \tcode{DBL_DIG},
\tcode{LDBL_DIG}.
\end{footnote}
\tcode{LDBL_DIG}, etc.
\end{example}

\pnum
Meaningful for all specializations in which
Expand Down Expand Up @@ -1303,16 +1303,14 @@
\pnum
For floating-point types, specifies the base or radix of the exponent representation
(often 2).
\begin{footnote}
Equivalent to \tcode{FLT_RADIX}.
\end{footnote}
\begin{example}
For \tcode{float},
equivalent to \tcode{FLT_RADIX}.
\end{example}

\pnum
For integer types, specifies the base of the
representation.
\begin{footnote}
Distinguishes types with bases other than 2 (e.g., BCD).
\end{footnote}

\pnum
Meaningful for all specializations.
Expand All @@ -1327,9 +1325,9 @@
\pnum
Machine epsilon: the difference between 1 and the least value greater than 1
that is representable.
\begin{footnote}
Equivalent to \tcode{FLT_EPSILON}, \tcode{DBL_EPSILON}, \tcode{LDBL_EPSILON}.
\end{footnote}
\begin{example}
Equivalent to \tcode{FLT_EPSILON}, \tcode{DBL_EPSILON}, \tcode{LDBL_EPSILON}, etc.
\end{example}

\pnum
Meaningful for all floating-point types.
Expand All @@ -1356,10 +1354,10 @@
\tcode{radix}
raised to the power of one less than that integer is a normalized floating-point
number.
\begin{footnote}
\begin{example}
Equivalent to \tcode{FLT_MIN_EXP}, \tcode{DBL_MIN_EXP},
\tcode{LDBL_MIN_EXP}.
\end{footnote}
\tcode{LDBL_MIN_EXP}, etc.
\end{example}

\pnum
Meaningful for all floating-point types.
Expand All @@ -1374,10 +1372,10 @@
\pnum
Minimum negative integer such that 10 raised to that power is in the range
of normalized floating-point numbers.
\begin{footnote}
\begin{example}
Equivalent to
\tcode{FLT_MIN_10_EXP}, \tcode{DBL_MIN_10_EXP}, \tcode{LDBL_MIN_10_EXP}.
\end{footnote}
\tcode{FLT_MIN_10_EXP}, \tcode{DBL_MIN_10_EXP}, \tcode{LDBL_MIN_10_EXP}, etc.
\end{example}

\pnum
Meaningful for all floating-point types.
Expand All @@ -1394,10 +1392,10 @@
\tcode{radix}
raised to the power one less than that integer is a representable finite
floating-point number.
\begin{footnote}
\begin{example}
Equivalent to \tcode{FLT_MAX_EXP},
\tcode{DBL_MAX_EXP}, \tcode{LDBL_MAX_EXP}.
\end{footnote}
\tcode{DBL_MAX_EXP}, \tcode{LDBL_MAX_EXP}, etc.
\end{example}

\pnum
Meaningful for all floating-point types.
Expand All @@ -1412,10 +1410,10 @@
\pnum
Maximum positive integer such that 10 raised to that power is in the
range of representable finite floating-point numbers.
\begin{footnote}
\begin{example}
Equivalent to
\tcode{FLT_MAX_10_EXP}, \tcode{DBL_MAX_10_EXP}, \tcode{LDBL_MAX_10_EXP}.
\end{footnote}
\tcode{FLT_MAX_10_EXP}, \tcode{DBL_MAX_10_EXP}, \tcode{LDBL_MAX_10_EXP}, etc.
\end{example}

\pnum
Meaningful for all floating-point types.
Expand Down Expand Up @@ -1645,9 +1643,10 @@
\begin{itemdescr}
\pnum
The rounding style for the type.
\begin{footnote}
Equivalent to \tcode{FLT_ROUNDS}.
\end{footnote}
\begin{example}
For \tcode{float},
equivalent to \tcode{FLT_ROUNDS}.
\end{example}

\pnum
Meaningful for all floating-point types.
Expand Down
Loading