VecSet2

Type Alias VecSet2 

Source
pub type VecSet2<T> = VecSet<[T; 2]>;
Expand description

Type alias for a VecSet with up to 2 elements with inline storage.

This is a good default, since for usize sized types, 2 is the max you can fit in without making the struct larger.

Aliased Typeยง

pub struct VecSet2<T>(/* private fields */);