MCPcopy Create free account
hub / github.com/buke/quickjs-go / IsArray

Method IsArray

value.go:1090–1090  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1088func (v *Value) IsSymbol() bool { return v != nil && bool(C.JS_IsSymbol(v.ref)) }
1089func (v *Value) IsObject() bool { return v != nil && bool(C.JS_IsObject(v.ref)) }
1090func (v *Value) IsArray() bool { return v != nil && bool(C.JS_IsArray(v.ref)) }
1091func (v *Value) IsDate() bool { return v != nil && bool(C.JS_IsDate(v.ref)) }
1092func (v *Value) IsError() bool { return v != nil && bool(C.JS_IsError(v.ref)) }
1093func (v *Value) IsRegExp() bool { return v != nil && bool(C.JS_IsRegExp(v.ref)) }

Callers 7

unmarshalSliceMethod · 0.80
unmarshalArrayMethod · 0.80
unmarshalInterfaceMethod · 0.80
TestComplexTypesFunction · 0.80
initializeFromArgsFunction · 0.80
TestValueBasicsFunction · 0.80

Calls

no outgoing calls

Tested by 3

TestComplexTypesFunction · 0.64
TestValueBasicsFunction · 0.64