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