Vrtgs

Results 2 comments of Vrtgs

Looking into the implementation of from_utf8 this should be quite easy to add ```rs #[inline] pub fn from_utf8(input: &[u8]) -> Result { unsafe { validate_utf8_basic(input)?; Ok(from_utf8_unchecked(input)) } } ``` and...

this should implement #73