daurnimator 5843a6e3bc
std: optimise utf8ByteSequenceLength
Also tested (but not as fast):
```zig
pub fn utf8ByteSequenceLength(first_byte: u8) !u3 {
    const len = @clz(u8, ~first_byte);
    if (len == 0) return 1;
    if (len < 4) return @intCast(u3, len);
    return error.Utf8InvalidStartByte;
}
```
2019-12-28 14:39:38 +11:00
..
2019-12-02 16:02:03 -05:00
2019-12-02 16:02:03 -05:00
2019-07-19 16:54:00 -04:00
2019-12-28 14:39:38 +11:00