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.

trimStart

Remove a set of values from the beginning of a slice.

mem.trimStart
pub fn trimStart(comptime T: type, slice: []const T, values_to_strip: []const T) []const T

File

lib/std/mem.zig:1191

Code

pub fn trimStart(comptime T: type, slice: []const T, values_to_strip: []const T) []const T {
    var begin: usize = 0;
    while (begin < slice.len and findScalar(T, values_to_strip, slice[begin]) != null) : (begin += 1) {}
    return slice[begin..];
}