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.

cutPrefix

If slice starts with prefix, returns the rest of slice starting at prefix.len.

mem.cutPrefix
pub fn cutPrefix(comptime T: type, slice: []const T, prefix: []const T) ?[]const T

File

lib/std/mem.zig:3195

Code

pub fn cutPrefix(comptime T: type, slice: []const T, prefix: []const T) ?[]const T {
    return if (startsWith(T, slice, prefix)) slice[prefix.len..] else null;
}