Standard library math implementations which favor speed over correctness.
var fastmath = require( '@stdlib/fastmath' );
Standard library fast math.
var ns = fastmath;
// returns {...}
The fastmath namespace contains the following sub-namespaces:
fmath
: standard library fast math special functions.
- Implementations may violate strict IEEE semantics.
- Implementations may assume arguments and results are not
NaN
. - Implementations may assume arguments are neither positive or negative
infinity
. - Implementations may ignore the sign of zero.
var objectKeys = require( '@stdlib/utils/keys' );
var fastmath = require( '@stdlib/fastmath' );
console.log( objectKeys( fastmath ) );