[][src]Struct ocaml::List

pub struct List(_);

OCaml list type

Methods

impl List[src]

pub fn new() -> List[src]

Create a new OCaml list

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

List length

pub fn push_hd(&mut self, v: Value)[src]

Add an element to the front of the list

pub fn hd(&self) -> Option<Value>[src]

List head

pub fn tl(&self) -> Value[src]

List tail

Trait Implementations

impl ToValue for List[src]

impl From<List> for Value[src]

impl From<Value> for List[src]

impl<'a, V: ToValue> From<&'a [V]> for List[src]

Auto Trait Implementations

impl Send for List

impl Unpin for List

impl Sync for List

impl UnwindSafe for List

impl RefUnwindSafe for List

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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