[][src]Struct ocaml::Array

pub struct Array(_);

OCaml Array type

Methods

impl Array[src]

pub fn new(n: Size) -> Array[src]

Create a new array of the given size

pub fn is_double_array(&self) -> bool[src]

Check if Array contains only doubles

pub fn len(&self) -> Size[src]

Array length

pub fn set_double(&mut self, i: Size, f: f64) -> Result<(), Error>[src]

Set value to double array

pub fn get_double(&mut self, i: Size) -> Result<f64, Error>[src]

Get a value from a double array

pub fn set(&mut self, i: Size, v: Value) -> Result<(), Error>[src]

Set array index

pub fn get(&self, i: Size) -> Result<Value, Error>[src]

Get array index

Trait Implementations

impl From<Array> for Value[src]

impl<R: AsRef<[Value]>> From<R> for Array[src]

impl From<Value> for Array[src]

Auto Trait Implementations

impl Send for Array

impl Sync for Array

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]