chumsky
chumsky copied to clipboard
Added with_slice, updated logos example
Currently unsound if passed an incorrectly sized slice.
It would be nice to have also a lasso integration.
This would allow making calls like ident().intern() possible.
It would be nice to have also a lasso integration. This would allow making calls like
ident().intern()possible.
Would this not be equivalent to:
ident().map_with_state(|i, _, rodeo: &Rodeo| rodeo.get_or_intern(i))
It would be nice to have also a lasso integration. This would allow making calls like
ident().intern()possible.Would this not be equivalent to:
ident().map_with_state(|i, _, rodeo: &Rodeo| rodeo.get_or_intern(i))
Yes, I will use trait extensions for that then.