Function trimRight [src]
Remove a set of values from the end of a slice.
Prototype
pub fn trimRight(comptime T: type, slice: []const T, values_to_strip: []const T) []const T
Parameters
T: type
slice: []const T
values_to_strip: []const T
Source
pub fn trimRight(comptime T: type, slice: []const T, values_to_strip: []const T) []const T {
var end: usize = slice.len;
while (end > 0 and indexOfScalar(T, values_to_strip, slice[end - 1]) != null) : (end -= 1) {}
return slice[0..end];
}