[][src]Type Definition generic_vec::TypeVec

type TypeVec<T, B, A = T> = GenericVec<T, UninitBuffer<B, A>>;

An type based vector backed by uninitialized memory with the same layout as B

see: UninitBuffer for details

Implementations

impl<T, B> TypeVec<T, B, T>[src]

pub const fn new() -> Self[src]

Create a new TypeVec

impl<T, B, A> TypeVec<T, B, A>[src]

pub const fn with_align() -> Self[src]

Create a new TypeVec with the given alignment type