std::experimental::ranges::Permutable -
std::experimental::ranges::Permutable
template <class I>
concept bool Permutable =
ForwardIterator<I> && (ranges TS)
IndirectlyMovableStorable<I, I> &&
IndirectlySwappable<I, I>;
The Permutable concept specifies the common requirements of algorithms that
reorder
elements in place by moving or swapping them (for example,
ranges::rotate).