Ashlynn Levenick

Results 7 issues of Ashlynn Levenick

While it would move away from being an ASCII renderer, [sixel](https://en.wikipedia.org/wiki/Sixel) is not entirely unlike a standard for rendering graphics to the terminal.

future

The selector option provides only one of four selectors, so if another matches before the user's selector then the option is ignored. Add a new option which controls whether the...

For example, you can't write `c![(b, a), for &(a, b) in &[(0, 1), (2, 3)]` - the macro asks for a `ident` rather than ` pat`.

It would be nice to be able to write a conditional at any location in the expression, e.g. `c![a + b, for a in some_vec, if a % 5 <...

Consider supporting an arbitrary number of `for` expressions rather than requiring the macro to be extended for each one? This would likely resolve #4, and lead to a fix for...

Docs need some more work, the previous ones were almost a copy-paste of the tests which seemed like bad form. They also didn't pass `cargo test`, so I added harnesses...

The arity `c!` is called with determines the iteration order - `c![(a, b, c), for a in 0..5, for b in 0..5, for c in 0..5]` is iterated differently than...