mirror of
https://github.com/dlang/phobos.git
synced 2025-05-08 12:07:15 +03:00
Convert section labels to title case
This commit is contained in:
parent
232380647b
commit
1a08d2a8d6
4 changed files with 15 additions and 15 deletions
20
std/math.d
20
std/math.d
|
@ -5290,9 +5290,9 @@ private:
|
|||
|
||||
/*********************************
|
||||
* Determines if $(D_PARAM x) is NaN.
|
||||
* params:
|
||||
* Params:
|
||||
* x = a floating point number.
|
||||
* returns:
|
||||
* Returns:
|
||||
* $(D true) if $(D_PARAM x) is Nan.
|
||||
*/
|
||||
bool isNaN(X)(X x) @nogc @trusted pure nothrow
|
||||
|
@ -5378,9 +5378,9 @@ if (isFloatingPoint!(X))
|
|||
|
||||
/*********************************
|
||||
* Determines if $(D_PARAM x) is finite.
|
||||
* params:
|
||||
* Params:
|
||||
* x = a floating point number.
|
||||
* returns:
|
||||
* Returns:
|
||||
* $(D true) if $(D_PARAM x) is finite.
|
||||
*/
|
||||
bool isFinite(X)(X x) @trusted pure nothrow @nogc
|
||||
|
@ -5421,9 +5421,9 @@ bool isFinite(X)(X x) @trusted pure nothrow @nogc
|
|||
*
|
||||
* A normalized number must not be zero, subnormal, infinite nor $(NAN).
|
||||
*
|
||||
* params:
|
||||
* Params:
|
||||
* x = a floating point number.
|
||||
* returns:
|
||||
* Returns:
|
||||
* $(D true) if $(D_PARAM x) is normalized.
|
||||
*/
|
||||
|
||||
|
@ -5471,9 +5471,9 @@ bool isNormal(X)(X x) @trusted pure nothrow @nogc
|
|||
* Subnormals (also known as "denormal number"), have a 0 exponent
|
||||
* and a 0 most significant mantissa bit.
|
||||
*
|
||||
* params:
|
||||
* Params:
|
||||
* x = a floating point number.
|
||||
* returns:
|
||||
* Returns:
|
||||
* $(D true) if $(D_PARAM x) is a denormal number.
|
||||
*/
|
||||
bool isSubnormal(X)(X x) @trusted pure nothrow @nogc
|
||||
|
@ -5533,9 +5533,9 @@ bool isSubnormal(X)(X x) @trusted pure nothrow @nogc
|
|||
|
||||
/*********************************
|
||||
* Determines if $(D_PARAM x) is $(PLUSMN)$(INFIN).
|
||||
* params:
|
||||
* Params:
|
||||
* x = a floating point number.
|
||||
* returns:
|
||||
* Returns:
|
||||
* $(D true) if $(D_PARAM x) is $(PLUSMN)$(INFIN).
|
||||
*/
|
||||
bool isInfinity(X)(X x) @nogc @trusted pure nothrow
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue