Function shiftElementsLeft [src]
Elements are shifted leftwards (towards lower indices). New elements are added to the right, and the leftmost elements are cut off
so that no elements with indices below 0 remain.
Prototype
pub fn shiftElementsLeft(vec: anytype, comptime amount: VectorCount(@TypeOf(vec)), shift_in: std.meta.Child(@TypeOf(vec))) @TypeOf(vec)
Parameters
amount: VectorCount(@TypeOf(vec))
shift_in: std.meta.Child(@TypeOf(vec))
Source
pub fn shiftElementsLeft(vec: anytype, comptime amount: VectorCount(@TypeOf(vec)), shift_in: std.meta.Child(@TypeOf(vec))) @TypeOf(vec) {
const V = @TypeOf(vec);
return mergeShift(vec, @as(V, @splat(shift_in)), amount);
}