Type Alias SFixedVec

Source
pub type SFixedVec<T, B = Vec<usize>> = FixedVec<T, usize, LE, B>;
Expand description

A FixedVec for signed integers with a usize word and Little-Endian layout.

This alias is suitable for general-purpose use with signed types like i8, i16, i32, i64, i128, or isize.

Aliased Typeยง

pub struct SFixedVec<T, B = Vec<usize>> { /* private fields */ }