Type Alias neon::types::JsBigUint64Array

source ·
pub type JsBigUint64Array = JsTypedArray<u64>;
Expand description

The type of JavaScript BigUint64Array objects.

§Example

use neon::types::buffer::TypedArray;

fn double(mut cx: FunctionContext) -> JsResult<JsUndefined> {
    let mut array: Handle<JsBigUint64Array> = cx.argument(0)?;

    for elem in array.as_mut_slice(&mut cx).iter_mut() {
        *elem *= 2;
    }

    Ok(cx.undefined())
}

Aliased Type§

struct JsBigUint64Array(/* private fields */);