fn rotateElementsLeft(vec: anytype, comptime amount: VectorCount(@TypeOf(vec))) @TypeOf(vec)

Elements are shifted leftwards (towards lower indices). Elements that leave to the left will reappear to the right in the same order.

Parameters

vec: anytype,
amount: VectorCount(@TypeOf(vec)),