Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

wtf8ToWtf16Le

Returns index of next character. If exact fit, returned index equals output slice length. Assumes there is enough space for the output.

unicode.wtf8ToWtf16Le
pub fn wtf8ToWtf16Le(wtf16le: []u16, wtf8: []const u8) error

File

lib/std/unicode.zig:1817

Code

pub fn wtf8ToWtf16Le(wtf16le: []u16, wtf8: []const u8) error{InvalidWtf8}!usize {
    return utf8ToUtf16LeImpl(wtf16le, wtf8, .can_encode_surrogate_half);
}