pub trait ArrayView: ValueView {
    fn as_value(&self) -> &dyn ValueView;
fn size(&self) -> i64;
fn values<'k>(&'k self) -> Box<dyn Iterator<Item = &'k dyn ValueView> + 'k>;
fn contains_key(&self, index: i64) -> bool;
fn get(&self, index: i64) -> Option<&dyn ValueView>; fn first(&self) -> Option<&dyn ValueView> { ... }
fn last(&self) -> Option<&dyn ValueView> { ... } }
Expand description

Accessor for arrays.

Required methods

Cast to ValueView

Returns the number of elements.

Returns an iterator .

Access a contained Value.

Access a contained Value.

Provided methods

Returns the first element.

Returns the last element.

Implementations on Foreign Types

Implementors