Produces an iterator emitting `n` items `u32::to_le_bytes` of the counter starting from zero.
(n: u32)
| 74 | |
| 75 | /// Produces an iterator emitting `n` items `u32::to_le_bytes` of the counter starting from zero. |
| 76 | pub fn le_bytes_iter(n: u32) -> impl_indexed_iter!(<Item = [u8; 4]>) { |
| 77 | cfg_into_iter!(0..n).map(u32::to_le_bytes) |
| 78 | } |
| 79 | |
| 80 | /// Produces an iterator of little endian bytes of each element contained in the range `counter_range` |
| 81 | pub fn le_bytes_iter_from_given_range( |
no test coverage detected