Type Alias neon::types::JsUint32Array

source ·
pub type JsUint32Array = JsTypedArray<u32>;
Expand description

The type of JavaScript Uint32Array objects.

§Example

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

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

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

    Ok(cx.undefined())
}

Aliased Type§

struct JsUint32Array(/* private fields */);