array_iterator

Crates.ioarray_iterator
lib.rsarray_iterator
version1.8.0
sourcesrc
created_at2019-03-15 21:11:45.77143
updated_at2021-07-05 12:36:47.498172
descriptionOwning iterators based on arrays.
homepagehttps://gitlab.com/kevincox/array_iterator.rs
repositoryhttps://gitlab.com/kevincox/array_iterator.rs
max_upload_size
id121134
size14,115
Kevin Cox (kevincox)

documentation

README

Array Iterator (DEPRECATED)

std::array::IntoIter is now stable, use that instead!. I will be maintaining this crate for the foreseeable future but plan on pushing an update that produces deprecation warnings in the future.

Migrating Off

You can easily migrate off using comby.

comby \
	'array_iterator::ArrayIterator::new(:[args])' \
	'std::array::IntoIter::new(:[args])' \
	.rs -in-place

You can also remove the dependency. This can be done automatically using cargo-edit.

cargo rm array_iterator
cargo check

Docs

Docs

Commit count: 37

cargo fmt