Function array_bytes::prefix_with
source · pub fn prefix_with<S, T, const N: usize>(slice: S, element: T) -> [T; N]
Expand description
Prefixes the given element to the given slice to make it a fixed-size array of length N
.
If the length of the slice is already equal to N
, it returns the slice as a fixed-size array.
If the length of the slice is greater than N
, it returns the first N
elements of the slice
as a fixed-size array.
If the length of the slice is less than N
, it creates a new fixed-size array of length N
and
copies the slice into it, padding the remaining elements with the given element.
Examples
assert_eq!(array_bytes::prefix_with::<_, _, 4>([1, 2, 3, 4], 0), [1, 2, 3, 4]);
assert_eq!(array_bytes::prefix_with::<_, _, 4>([1, 2, 3, 4, 5, 6], 0), [1, 2, 3, 4]);
assert_eq!(array_bytes::prefix_with::<_, _, 5>([1, 2, 3], 0), [0, 0, 1, 2, 3]);