Removes the first element from a slice, optionally along a specified dimension.
auto ar = [3, 4]; ar.popFront; assert(ar == [4]); ar.popFront!0; // Slice-like API assert(ar == []);
Removes the first element from a slice, optionally along a specified dimension.