Function calcUtf16LeLen [src]

Returns length in UTF-16LE of UTF-8 slice as length of []u16. Length in []u8 is 2*len16.

Prototype

pub fn calcUtf16LeLen(utf8: []const u8) CalcUtf16LeLenError!usize

Parameters

utf8: []const u8

Possible Errors

Utf8CodepointTooLarge Utf8Decode4Error
Utf8EncodesSurrogateHalf Utf8Decode3Error
Utf8ExpectedContinuation Utf8Decode2Error
Utf8InvalidStartByte
Utf8OverlongEncoding Utf8Decode2Error

Example

test calcUtf16LeLen { try testCalcUtf16LeLenImpl(calcUtf16LeLen); try comptime testCalcUtf16LeLenImpl(calcUtf16LeLen); }

Source

pub fn calcUtf16LeLen(utf8: []const u8) CalcUtf16LeLenError!usize { return calcUtf16LeLenImpl(utf8, .cannot_encode_surrogate_half); }