Moves the back element of a bidirectional range.
The back element is left in a valid but unspecified state. $(D_PSYMBOL moveBack) doesn't advances the range, so popBack should be probably called after this function.
Type of the range.
Bidirectional range.
The back element of the $(D_PSYMBOL range).
// Has elements without a postblit constructor. int[2] a = 5; assert(moveBack(a[]) == 5);
$(D_PSYMBOL move).
See Implementation
Moves the back element of a bidirectional range.
The back element is left in a valid but unspecified state. $(D_PSYMBOL moveBack) doesn't advances the range, so popBack should be probably called after this function.