decodeValidUTF8NoGC

@nogc version of std.utf.decode() for char[], but assumes str is valid UTF-8.

The caller must handle ASCII (< 0x80) characters manually; this is asserted to force code using this function to be efficient.

alias decodeValidUTF8NoGC = decodeUTF8NoGC!(Yes.validated)

Meta