Function utf8ToUtf16LeStringLiteral [src]

Converts a UTF-8 string literal into a UTF-16LE string literal.

Prototype

pub fn utf8ToUtf16LeStringLiteral(comptime utf8: []const u8) *const [calcUtf16LeLen(utf8) catch |err| @compileError(err):0]u16

Parameters

utf8: []const u8

Example

test utf8ToUtf16LeStringLiteral { try testUtf8ToUtf16LeStringLiteral(utf8ToUtf16LeStringLiteral); }

Source

pub fn utf8ToUtf16LeStringLiteral(comptime utf8: []const u8) *const [calcUtf16LeLen(utf8) catch |err| @compileError(err):0]u16 { return utf8ToUtf16LeStringLiteralImpl(utf8, .cannot_encode_surrogate_half); }