Type Alias LESSeqVec
Source pub type LESSeqVec<T, B = Vec<u64>> = SeqVec<T, LE, B>;
Expand description
A SeqVec for signed integers with little-endian bit ordering.
This is an alias for SSeqVec, provided for consistency with the naming
pattern {Endianness}{SignedUnsigned}SeqVec.
Signed integers are transparently encoded using zig-zag encoding via the
Storable trait.
pub struct LESSeqVec<T, B = Vec<u64>> { }