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.

findLastNone

Find the last item in slice which is not contained in values.

Like strspn in the C standard library, but searches from the end.

mem.findLastNone
pub fn findLastNone(comptime T: type, slice: []const T, values: []const T) ?usize

File

lib/std/mem.zig:1395

Code

pub fn findLastNone(comptime T: type, slice: []const T, values: []const T) ?usize {
    var i: usize = slice.len;
    outer: while (i != 0) {
        i -= 1;
        for (values) |value| {
            if (slice[i] == value) continue :outer;
        }
        return i;
    }
    return null;
}