MCPcopy Create free account
hub / github.com/nodejs/node / cos_f64

Function cos_f64

deps/v8/test/mjsunit/wasm/asm-wasm-stdlib.js:294–294  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

292 function asin_f64(x) { x = +x; return +asin(x); }
293 function atan_f64(x) { x = +x; return +atan(x); }
294 function cos_f64(x) { x = +x; return +cos(x); }
295 function sin_f64(x) { x = +x; return +sin(x); }
296 function tan_f64(x) { x = +x; return +tan(x); }
297 function exp_f64(x) { x = +x; return +exp(x); }

Callers

nothing calls this directly

Calls 1

cosFunction · 0.85

Tested by

no test coverage detected