template <class I, SizedSentinel<I> S>
constexpr difference_type_t<I> operator-(
const move_sentinel<S>& s, const move_iterator<I>& i);
Effects: Equivalent to: return s.last - i.current;
template <class I, SizedSentinel<I> S>
constexpr difference_type_t<I> operator-(
const move_iterator<I>& i, const move_sentinel<S>& s);
Effects: Equivalent to: return i.current - s.last;
template <Semiregular S>
constexpr move_sentinel<S> make_move_sentinel(S s);
Returns: move_sentinel<S>(s).