MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / fx_Math_asin

Function fx_Math_asin

xs/sources/xsMath.c:148–154  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

146}
147
148void fx_Math_asin(txMachine* the)
149{
150 mxNanResultIfNoArg;
151 fxToNumber(the, mxArgv(0));
152 mxResult->kind = XS_NUMBER_KIND;
153 mxResult->value.number = c_asin(mxArgv(0)->value.number);
154}
155
156void fx_Math_asinh(txMachine* the)
157{

Callers

nothing calls this directly

Calls 1

fxToNumberFunction · 0.85

Tested by

no test coverage detected