Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/buke/quickjs-go
/ __JS_NewFloat64
Function
__JS_NewFloat64
deps/quickjs/quickjs.h:222–225 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
220
#define JS_NAN JS_MKVAL(JS_TAG_FLOAT64, 0)
221
222
static inline JSValue __JS_NewFloat64(double d)
223
{
224
return JS_MKVAL(JS_TAG_FLOAT64, (int)d);
225
}
226
227
static inline bool JS_VALUE_IS_NAN(JSValue v)
228
{
Callers
1
JS_NewFloat64
Function · 0.85
Calls
1
JS_MKVAL
Function · 0.85
Tested by
no test coverage detected