time-to-botec/squiggle/node_modules/@stdlib/math/base/special/fast/README.md
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

5.2 KiB

Special Functions

Standard library fast math special functions.

Usage

var fmath = require( '@stdlib/math/base/special/fast' );

fmath

Standard library fast math special functions.

var fcns = fmath;
// returns {...}

Notes

  • 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.

Examples

var objectKeys = require( '@stdlib/utils/keys' );
var fmath = require( '@stdlib/math/base/special/fast' );

console.log( objectKeys( fmath ) );