neon_runtime/nan/
arraybuffer.rs

1//! Facilities for working with `v8::ArrayBuffer`s.
2
3/// Mutates the `out` argument provided to refer to a newly created `v8::ArrayBuffer` object.
4/// Returns `false` if the value couldn't be created.
5pub use neon_sys::Neon_ArrayBuffer_New as new;
6
7/// Mutates the `base_out` and `size_out` arguments to access the data of a `v8::ArrayBuffer` object.
8pub use neon_sys::Neon_ArrayBuffer_Data as data;