1 unstable release

0.1.0 Aug 24, 2020

#46 in #macro-helpers

24 downloads per month
Used in tupiter

MIT/Apache

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);
}

No runtime deps