Crates.io | array_iterator |
lib.rs | array_iterator |
version | 1.8.0 |
source | src |
created_at | 2019-03-15 21:11:45.77143 |
updated_at | 2021-07-05 12:36:47.498172 |
description | Owning iterators based on arrays. |
homepage | https://gitlab.com/kevincox/array_iterator.rs |
repository | https://gitlab.com/kevincox/array_iterator.rs |
max_upload_size | |
id | 121134 |
size | 14,115 |
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.
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