/// A hashmap optimized for small sets of size less than 32 with a fast hash implementation.
///
/// Used widely for shader reflection.
pub type FastHashMap<K, V> =
SizedHashMap;
/// Common string type for parameters and uniform names with small string optimizations up to 23 bytes.
pub type ShortString = crateParamString;