◐ Shell
clean mode source ↗

std::experimental::ranges::Permutable - cppreference.com

来自cppreference.com

template< class I >
concept bool Permutable =
    ForwardIterator<I> &&
    IndirectlyMovableStorable<I, I> &&
    IndirectlySwappable<I, I>;
(范围 TS)

Permutable 概念指定通过移动或交换元素,原位重排它们的算法(例如 ranges::rotate)的常用要求。