[][src]Trait smallvec::ToSmallVec

pub trait ToSmallVec<A: Array> {
    fn to_smallvec(&self) -> SmallVec<A>;
}

Convenience trait for constructing a SmallVec

Required methods

fn to_smallvec(&self) -> SmallVec<A>

Construct a new SmallVec from a slice.

Loading content...

Implementors

impl<A: Array> ToSmallVec<A> for [A::Item] where
    A::Item: Copy
[src]

Loading content...