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.

defaultEql

Like std.mem.eql, but takes advantage of the fact that the lengths of a and b are known to be equal.

static_string_map.defaultEql
pub fn defaultEql(a: []const u8, b: []const u8) bool

File

lib/std/static_string_map.zig:13

Code

pub fn defaultEql(a: []const u8, b: []const u8) bool {
    if (a.ptr == b.ptr) return true;
    for (a, b) |a_elem, b_elem| {
        if (a_elem != b_elem) return false;
    }
    return true;
}