Scroll to navigation

std::experimental::ranges::Permutable(3) C++ Standard Libary std::experimental::ranges::Permutable(3)

NAME

std::experimental::ranges::Permutable - std::experimental::ranges::Permutable

Synopsis


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).

2022.07.31 http://cppreference.com