pub fn range<const N: usize>() -> [usize; N]
Creates a array of indices.
assert_eq!(range::<5>(), [0, 1, 2, 3, 4]);