Function trimLeft [src]

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

Prototype

pub fn trimLeft(comptime T: type, slice: []const T, values_to_strip: []const T) []const T

Parameters

T: typeslice: []const Tvalues_to_strip: []const T

Source

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