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.

utf8ValidCodepoint

Returns true if the given unicode codepoint can be encoded in UTF-8.

unicode.utf8ValidCodepoint
pub fn utf8ValidCodepoint(value: u21) bool

File

lib/std/unicode.zig:188

Code

pub fn utf8ValidCodepoint(value: u21) bool {
    return switch (value) {
        0xD800...0xDFFF => false, // Surrogates range
        0x110000...0x1FFFFF => false, // Above the maximum codepoint value
        else => true,
    };
}