1 unstable release
0.1.0 | Aug 24, 2020 |
---|
#50 in #macro-helpers
Used in tupiter
2KB
Tupiter
This crate is a hacky solution for anyone who wants to iterate over a homogeneous tuple that they can't rewrite to being an array.
use ::tupiter::IntoIterator;
for x in (1,2,3,4).into_iter() {
println!("{}", x);
}