Type Definition sml_rs::ArrayBuf

source ·
pub type ArrayBuf<const N: usize> = Vec<u8, N>;
Expand description

Type alias for heapless::Vec<u8>

Trait Implementations

Appends a byte to the back of the vector. Read more
Shortens the vector, keeping the first len elements and dropping the rest.
Clears the vector, removing all values.
Clones and appends all bytes in a slice to the vector. Read more