[][src]Trait type_freak::list::LToUsizeVec

pub trait LToUsizeVec {
    fn to_usize_vec() -> Vec<usize>;
fn append_usize_vec(values: &mut Vec<usize>); }

The trait builds a concrete Vec<usize> from a TList

It provides to_usize_vec method to produces a vector of integers. It assumes all contained types implement Unsigned trait.

Required methods

fn to_usize_vec() -> Vec<usize>

fn append_usize_vec(values: &mut Vec<usize>)

Loading content...

Implementors

impl LToUsizeVec for LNil[src]

impl<Value, Tail> LToUsizeVec for LCons<Value, Tail> where
    Value: Unsigned,
    Tail: TList + LToUsizeVec
[src]

Loading content...