Function utf16LeToUtf8ArrayList [src]

Prototype

pub fn utf16LeToUtf8ArrayList(result: *std.ArrayList(u8), utf16le: []const u16) Utf16LeToUtf8AllocError!void

Parameters

result: *std.ArrayList(u8)utf16le: []const u16

Possible Errors

DanglingSurrogateHalf NextCodepointError
ExpectedSecondSurrogateHalf NextCodepointError
OutOfMemory Error
UnexpectedSecondSurrogateHalf NextCodepointError

Source

pub fn utf16LeToUtf8ArrayList(result: *std.ArrayList(u8), utf16le: []const u16) Utf16LeToUtf8AllocError!void { try result.ensureUnusedCapacity(utf16le.len); return utf16LeToUtf8ArrayListImpl(result, utf16le, .cannot_encode_surrogate_half); }