chumsky icon indicating copy to clipboard operation
chumsky copied to clipboard

Added with_slice, updated logos example

Open zesterer opened this issue 2 years ago • 3 comments

Currently unsound if passed an incorrectly sized slice.

zesterer avatar Jun 07 '23 16:06 zesterer

It would be nice to have also a lasso integration. This would allow making calls like ident().intern() possible.

Amejonah1200 avatar Aug 25 '23 14:08 Amejonah1200

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

Zij-IT avatar Aug 25 '23 18:08 Zij-IT

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.

Amejonah1200 avatar Aug 27 '23 18:08 Amejonah1200