orx-iterable 1.3.0

Defines and implements Iterable, Collection and CollectionMut traits to represent types that can be iterated over multiple times.
Documentation
1
2
3
4
5
6
7
8
9
mod empty;
mod once;
mod repeat;
mod repeat_n;

pub use empty::{empty, empty_col, Empty, EmptyCol};
pub use once::{once, once_col, Once, OnceCol};
pub use repeat::{repeat, Repeat};
pub use repeat_n::{repeat_n, RepeatN};