jSPropertyNameArrayGetCount top-level property

int Function(Pointer<NativeType> array) jSPropertyNameArrayGetCount
final

Gets a count of the number of items in a JavaScript property name array. array (JSPropertyNameArrayRef) The array from which to retrieve the count. @result (size_t) An integer count of the number of names in array.

Implementation

final int Function(Pointer array) jSPropertyNameArrayGetCount = JscFfi.lib
    .lookup<NativeFunction<Uint32 Function(Pointer)>>(
        'JSPropertyNameArrayGetCount')
    .asFunction();