constexpr move_iterator& operator++();
Effects: As if by ++current.
Returns: *this.
constexpr move_iterator operator++(int);
Effects: As if by:
move_iterator tmp = *this; ++current; return tmp;