Non-Allocating String Iterators
This library provides basic non-allocating string iterators for both substring and character functions.
Examples
- Character Functions
use Func;
TODO
Implement the multitude of useful iterator traits.
This library provides basic non-allocating string iterators for both substring and character functions.
use str_iter::Func;
fn main() {
"Hello 😎 Dennis! 😀"
.func_iter(|c: char| c < '\u{1F600}' || c > '\u{1F64F}')
.for_each(|v| println!("{}", v));
}
Implement the multitude of useful iterator traits.