m4rw3r / chomp

A fast monadic-style parser combinator designed to work on stable Rust.
Apache License 2.0
244 stars 19 forks source link

Use std::str::from_utf8_unchecked instead of std::mem::transmute #59

Closed taralx closed 8 years ago

taralx commented 8 years ago

I noticed this in ascii.rs -- transmute is not necessarily future-proof, whereas from_utf8_unchecked is. Thought I'd mention it. :-)