pub type JsBigInt64Array = JsTypedArray<i64>;
Expand description
The type of JavaScript BigInt64Array
objects.
§Example
use neon::types::buffer::TypedArray;
fn double(mut cx: FunctionContext) -> JsResult<JsUndefined> {
let mut array: Handle<JsBigInt64Array> = cx.argument(0)?;
for elem in array.as_mut_slice(&mut cx).iter_mut() {
*elem *= 2;
}
Ok(cx.undefined())
}
Aliased Type§
struct JsBigInt64Array(/* private fields */);
Implementations
source§impl<T: Binary> JsTypedArray<T>where
JsTypedArray<T>: Value,
impl<T: Binary> JsTypedArray<T>where
JsTypedArray<T>: Value,
sourcepub fn from_slice<'cx, C>(cx: &mut C, slice: &[T]) -> JsResult<'cx, Self>where
C: Context<'cx>,
pub fn from_slice<'cx, C>(cx: &mut C, slice: &[T]) -> JsResult<'cx, Self>where
C: Context<'cx>,
Constructs an instance from a slice by copying its contents.
This method is defined on JsTypedArray
as a convenience and delegates to
TypedArray::from_slice
.
source§impl<T> JsTypedArray<T>
impl<T> JsTypedArray<T>
sourcepub fn from_buffer<'cx, 'b: 'cx, C>(
cx: &mut C,
buffer: Handle<'b, JsArrayBuffer>,
) -> JsResult<'cx, Self>where
C: Context<'cx>,
pub fn from_buffer<'cx, 'b: 'cx, C>(
cx: &mut C,
buffer: Handle<'b, JsArrayBuffer>,
) -> JsResult<'cx, Self>where
C: Context<'cx>,
Constructs a typed array that views buffer
.
The resulting typed array has (buffer.size() / size_of::<T>())
elements.
sourcepub fn from_region<'c, 'r, C>(
cx: &mut C,
region: &Region<'r, T>,
) -> JsResult<'c, Self>where
C: Context<'c>,
pub fn from_region<'c, 'r, C>(
cx: &mut C,
region: &Region<'r, T>,
) -> JsResult<'c, Self>where
C: Context<'c>,
Constructs a typed array for the specified buffer region.
The resulting typed array has region.len()
elements and a size of
region.size()
bytes.
Throws an exception if the region is invalid, for example if the starting offset is not properly aligned, or the length goes beyond the end of the buffer.
sourcepub fn region<'cx, C>(&self, cx: &mut C) -> Region<'cx, T>where
C: Context<'cx>,
pub fn region<'cx, C>(&self, cx: &mut C) -> Region<'cx, T>where
C: Context<'cx>,
Returns information about the backing buffer region for this typed array.
sourcepub fn new<'cx, C>(cx: &mut C, len: usize) -> JsResult<'cx, Self>where
C: Context<'cx>,
pub fn new<'cx, C>(cx: &mut C, len: usize) -> JsResult<'cx, Self>where
C: Context<'cx>,
Constructs a new typed array of length len
.
The resulting typed array has a newly allocated storage buffer of
size (len * size_of::<T>())
bytes.
sourcepub fn buffer<'cx, C>(&self, cx: &mut C) -> Handle<'cx, JsArrayBuffer>where
C: Context<'cx>,
pub fn buffer<'cx, C>(&self, cx: &mut C) -> Handle<'cx, JsArrayBuffer>where
C: Context<'cx>,
Returns the JsArrayBuffer
that owns the underlying storage buffer
for this typed array.
Note that the typed array might only reference a region of the buffer; use the
offset()
and
size()
methods to
determine the region.
Trait Implementations
source§impl Object for JsTypedArray<i64>
impl Object for JsTypedArray<i64>
source§fn prop<'a, 'cx: 'a, K: PropertyKey>(
&self,
cx: &'a mut Cx<'cx>,
key: K,
) -> PropOptions<'a, 'cx, Self, K>
fn prop<'a, 'cx: 'a, K: PropertyKey>( &self, cx: &'a mut Cx<'cx>, key: K, ) -> PropOptions<'a, 'cx, Self, K>
PropOptions
for accessing a property. Read moresource§fn method<'a, 'cx: 'a, K: PropertyKey>(
&self,
cx: &'a mut Cx<'cx>,
key: K,
) -> NeonResult<BindOptions<'a, 'cx>>
fn method<'a, 'cx: 'a, K: PropertyKey>( &self, cx: &'a mut Cx<'cx>, key: K, ) -> NeonResult<BindOptions<'a, 'cx>>
this
to the object. Read moresource§fn get_opt<'a, V: Value, C: Context<'a>, K: PropertyKey>(
&self,
cx: &mut C,
key: K,
) -> NeonResult<Option<Handle<'a, V>>>
fn get_opt<'a, V: Value, C: Context<'a>, K: PropertyKey>( &self, cx: &mut C, key: K, ) -> NeonResult<Option<Handle<'a, V>>>
Object::prop()
insteadsource§fn get_value<'a, C: Context<'a>, K: PropertyKey>(
&self,
cx: &mut C,
key: K,
) -> NeonResult<Handle<'a, JsValue>>
fn get_value<'a, C: Context<'a>, K: PropertyKey>( &self, cx: &mut C, key: K, ) -> NeonResult<Handle<'a, JsValue>>
Object::prop()
insteadsource§fn get<'a, V: Value, C: Context<'a>, K: PropertyKey>(
&self,
cx: &mut C,
key: K,
) -> NeonResult<Handle<'a, V>>
fn get<'a, V: Value, C: Context<'a>, K: PropertyKey>( &self, cx: &mut C, key: K, ) -> NeonResult<Handle<'a, V>>
Object::prop()
insteadsource§fn get_own_property_names<'a, C: Context<'a>>(
&self,
cx: &mut C,
) -> JsResult<'a, JsArray>
fn get_own_property_names<'a, C: Context<'a>>( &self, cx: &mut C, ) -> JsResult<'a, JsArray>
napi-6
only.fn freeze<'a, C: Context<'a>>(&self, cx: &mut C) -> NeonResult<&Self>
fn seal<'a, C: Context<'a>>(&self, cx: &mut C) -> NeonResult<&Self>
source§fn set<'a, C: Context<'a>, K: PropertyKey, W: Value>(
&self,
cx: &mut C,
key: K,
val: Handle<'_, W>,
) -> NeonResult<bool>
fn set<'a, C: Context<'a>, K: PropertyKey, W: Value>( &self, cx: &mut C, key: K, val: Handle<'_, W>, ) -> NeonResult<bool>
Object::prop()
insteadfn root<'a, C: Context<'a>>(&self, cx: &mut C) -> Root<Self>
source§fn call_method_with<'a, C, K>(
&self,
cx: &mut C,
method: K,
) -> NeonResult<CallOptions<'a>>where
C: Context<'a>,
K: PropertyKey,
fn call_method_with<'a, C, K>(
&self,
cx: &mut C,
method: K,
) -> NeonResult<CallOptions<'a>>where
C: Context<'a>,
K: PropertyKey,
Object::method()
instead