命名空间
变体
操作

std::experimental::ranges::Permutable

来自 cppreference.cn
< cpp‎ | experimental‎ | ranges
 
 
实验性
技术规范
文件系统库 (filesystem TS)
库基础 (library fundamentals TS)
库基础 2 (library fundamentals TS v2)
库基础 3 (library fundamentals TS v3)
并行扩展 (parallelism TS)
并行扩展 2 (parallelism TS v2)
并发扩展 (concurrency TS)
并发扩展 2 (concurrency TS v2)
概念 (concepts TS)
范围 (ranges TS)
反射 (reflection TS)
数学特殊函数 (special functions TR)
实验性非TS
模式匹配
线性代数
std::execution
契约
2D图形
 
 
迭代器库
迭代器概念
间接可调用概念
                                                  
                                                  
                                                  
通用算法要求
                                                  
Permutable
概念工具
迭代器工具和操作
迭代器 traits
迭代器适配器
流迭代器
 
template< class I >

concept bool Permutable =
    ForwardIterator<I> &&
    IndirectlyMovableStorable<I, I> &&

    IndirectlySwappable<I, I>;
(ranges TS)

Permutable 概念指定了通过移动或交换元素就地重新排序元素的算法的通用要求(例如,ranges::rotate)。