JS_IsArrayObject 编辑
Determine if a specified object is an Array
.
Syntax
bool
JS_IsArrayObject(JSContext *cx, JS::HandleValue value, bool *isArray);
bool
JS_IsArrayObject(JSContext *cx, JS::HandleObject obj, bool *isArray);
// Obsolete since JSAPI 44
bool
JS_IsArrayObject(JSContext *cx, JS::HandleValue value);
bool
JS_IsArrayObject(JSContext *cx, JS::HandleObject obj);
Name | Type | Description |
---|---|---|
cx | JSContext * | A context. |
value | JS::HandleValue | The value to examine. |
obj | JS::HandleObject | The object to examine. |
isArray | bool | Whether the value/object is an array. |
Description
JS_IsArrayObject
determines if a specified object, obj
or value
, is an Array
object.
On success, returns true and sets isArray
indicating whether obj
is an Array object or a wrapper around one. Otherwise returns false on failure.
See Also
- MXR ID Search for
JS_IsArrayObject
- bug 959787 - added
value
- bug 1179003 - added
isArray
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论