time-to-botec/js/node_modules/@stdlib/math/base/special/fast
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00
..
abs feat: add the node modules 2022-12-03 12:44:49 +00:00
acosh feat: add the node modules 2022-12-03 12:44:49 +00:00
alpha-max-plus-beta-min feat: add the node modules 2022-12-03 12:44:49 +00:00
asinh feat: add the node modules 2022-12-03 12:44:49 +00:00
atanh feat: add the node modules 2022-12-03 12:44:49 +00:00
docs/types feat: add the node modules 2022-12-03 12:44:49 +00:00
hypot feat: add the node modules 2022-12-03 12:44:49 +00:00
lib feat: add the node modules 2022-12-03 12:44:49 +00:00
max feat: add the node modules 2022-12-03 12:44:49 +00:00
min feat: add the node modules 2022-12-03 12:44:49 +00:00
pow-int feat: add the node modules 2022-12-03 12:44:49 +00:00
uint32-log2 feat: add the node modules 2022-12-03 12:44:49 +00:00
uint32-sqrt feat: add the node modules 2022-12-03 12:44:49 +00:00
package.json feat: add the node modules 2022-12-03 12:44:49 +00:00
README.md feat: add the node modules 2022-12-03 12:44:49 +00:00

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 ) );