Function javascriptcore_sys::JSObjectGetPropertyAtIndex [] [src]

pub unsafe extern "C" fn JSObjectGetPropertyAtIndex(
    ctx: JSContextRef,
    object: JSObjectRef,
    propertyIndex: c_uint,
    exception: *mut JSValueRef
) -> JSValueRef

Gets a property from an object by numeric index.

Returns the property's value if object has the property, otherwise the undefined value.

Calling JSObjectGetPropertyAtIndex is equivalent to calling JSObjectGetProperty with a string containing propertyIndex, but JSObjectGetPropertyAtIndex provides optimized access to numeric properties.