1
2
3
4
5
6
7
8
use core::any::TypeId;

use smallvec::SmallVec;

/// Array of [`TypeId`]s.
///
/// Holds up to 8 Type IDs before overflowing onto the heap.
pub type TypeIds = SmallVec<[TypeId; 8]>;