fn orderedRemove(self: *Self, i: usize) T

Remove the element at index i, shift elements after index i forward, and return the removed element. Asserts the slice has at least one item. This operation is O(N).

Parameters

self: *Self,
i: usize,