[][src]Crate ve

Faster, more compact implementation of Vec.

use std::mem::size_of;
use ve::Vec;

const WORD: usize = size_of::<usize>();

assert_eq!(size_of::<Vec<u8>>(), 2 * WORD);

Re-exports

pub use crate::vec::Vec;

Modules

vec

A contiguous growable array type with heap-allocated contents, written Vec<T>.

Macros

vec

Creates a Vec containing the arguments.