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.

findAnyPos

Linear search for the index of any value in the provided list inside a slice, starting from a given position. Returns null if no values are found.

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

File

lib/std/mem.zig:1358

Code

pub fn findAnyPos(comptime T: type, slice: []const T, start_index: usize, values: []const T) ?usize {
    if (start_index >= slice.len) return null;
    for (slice[start_index..], start_index..) |c, i| {
        for (values) |value| {
            if (c == value) return i;
        }
    }
    return null;
}