Crate slice_n

Crate slice_n 

Source

Structs§

SliceN
A slice guaranteed to contain at least N elements.

Functions§

from_raw_parts
Forms a SliceN from a pointer and a length if it is long enough.
from_raw_parts_mut
Forms a SliceN from a mutable pointer and a length if it is long enough.
from_raw_parts_unchecked
Forms a SliceN from a pointer and a length, without checking the length.
from_raw_parts_unchecked_mut
Forms a SliceN from a mutable pointer and a length, without checking the length.

Type Aliases§

Slice1
A slice guaranteed to contain at least one element.