ArrayMutIterator

struct ArrayMutIterator<T>

An iterator over array mut values. An exclusive iterator over a uniquely owned array buffer.

next moves the current element out; callers that continue using the array must replace it through _store_current before advancing ownership again.

Properties

let storage: &mut Storage<T>

The backing storage.

let count: Int

The total number of elements available to the iterator.

let position: Int

The current position.