Crate slice_n
Source - SliceN
- A slice guaranteed to contain at least
N elements.
- 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.
- Slice1
- A slice guaranteed to contain at least one element.