Constructs a new iterator for iterating over the values of this array
(&self)
| 363 | |
| 364 | /// Constructs a new iterator for iterating over the values of this array |
| 365 | pub fn iter(&self) -> ArrayIter<&Self> { |
| 366 | ArrayIter::new(self) |
| 367 | } |
| 368 | |
| 369 | /// Returns an iterator over the bytes of this array, including null values |
| 370 | pub fn bytes_iter(&self) -> impl Iterator<Item = &[u8]> { |
no outgoing calls