blob: 7f66daa186424b1b3b81cdcd956979d7ddbddc6d [file] [log] [blame]
use smallvec::SmallVec;
// most strings are short, so we can use a fixed-size array
const VEC_SIZE: usize = 32;
pub type FastVec<T> = SmallVec<[T; VEC_SIZE]>;