File tree Expand file tree Collapse file tree 1 file changed +0
-33
lines changed
lib/node_modules/@stdlib/math/base/special/fast/docs/types Expand file tree Collapse file tree 1 file changed +0
-33
lines changed Original file line number Diff line number Diff line change 21
21
/* eslint-disable max-lines */
22
22
23
23
import abs = require( '@stdlib/math/base/special/fast/abs' ) ;
24
- import absf = require( '@stdlib/math/base/special/fast/absf' ) ;
25
24
import acosh = require( '@stdlib/math/base/special/fast/acosh' ) ;
26
25
import ampbm = require( '@stdlib/math/base/special/fast/alpha-max-plus-beta-min' ) ;
27
26
import asinh = require( '@stdlib/math/base/special/fast/asinh' ) ;
@@ -69,38 +68,6 @@ interface Namespace {
69
68
*/
70
69
abs : typeof abs ;
71
70
72
- /**
73
- * ComputeS the absolute value of a single-precision floating-point number `x`.
74
- *
75
- * ## Notes
76
- *
77
- * - This implementation is not IEEE 754 compliant. If provided `-0`, the function returns `-0`.
78
- *
79
- * @param x - input value
80
- * @returns absolute value
81
- *
82
- * @example
83
- * var v = ns.abs( -1.0 );
84
- * // returns 1.0
85
- *
86
- * @example
87
- * var v = ns.abs( 2.0 );
88
- * // returns 2.0
89
- *
90
- * @example
91
- * var v = ns.abs( 0.0 );
92
- * // returns 0.0
93
- *
94
- * @example
95
- * var v = ns.abs( -0.0 );
96
- * // returns -0.0
97
- *
98
- * @example
99
- * var v = ns.abs( NaN );
100
- * // returns NaN
101
- */
102
- absf : typeof absf ;
103
-
104
71
/**
105
72
* Computes the hyperbolic arccosine of a number.
106
73
*
You can’t perform that action at this time.
0 commit comments