Macros for Python-like list comprehension creation of iterators.
Another Crate that tries to bring the simplicty of Python's syntax to Rust iterators.
The main macro is iter
, and other macros are extensions of the latter.
Below, small examples of how the macros work: ```rust use comptools::*;
let vec: Vec
let sum: u64 = sum![xx; for x in 1..; while xx*x < 1234]; assert_eq!(sum, 385); ```
Contributions are more than welcome!