命名空间
变体
操作

std::swappable (自 C++20 起)std::swappable_with (自 C++20 起)

来自 cppreference.com
< cpp‎ | concepts
定义在头文件 <concepts>
template< class T >

concept swappable =
    requires(T& a, T& b) {
        ranges::swap(a, b);

    };
(1) (自 C++20 起)
template< class T, class U >

concept swappable_with =
    std::common_reference_with<T, U> &&
    requires(T&& t, U&& u) {
        ranges::swap(std::forward<T>(t), std::forward<T>(t));
        ranges::swap(std::forward<U>(u), std::forward<U>(u));
        ranges::swap(std::forward<T>(t), std::forward<U>(u));
        ranges::swap(std::forward<U>(u), std::forward<T>(t));

    };
(2) (自 C++20 起)

概念 swappable<T> 指定类型为 T 的左值是可交换的。

概念 swappable_with<T, U> 指定类型和值类别由 TU 编码的表达式是可相互交换的。 swappable_with<T, U> 仅在调用 ranges::swap(t, u) 交换了 tu 的值时才会满足,也就是说,给定不同的对象 t2 等于 tu2 等于 u,在评估 ranges::swap(t, u)ranges::swap(u, t) 之后,t2 等于 uu2 等于 t

[编辑] 等价保持

在标准库概念的 requires 表达式 中声明的表达式必须是 等价保持的(除非另有说明)。

[编辑] 参考资料

  • C++23 标准(ISO/IEC 14882:2024)
  • 18.4.9 概念 swappable [concept.swappable]
  • C++20 标准(ISO/IEC 14882:2020)
  • 18.4.9 概念 swappable [concept.swappable]