std::relation (C++20 起)

来自cppreference.com
< cpp‎ | concepts
在标头 <concepts> 定义
template< class R, class T, class U >

concept relation =
    std::predicate<R, T, T> && std::predicate<R, U, U> &&

    std::predicate<R, T, U> && std::predicate<R, U, T>;
(1) (C++20 起)

概念 relation<R, T, U> 指定 R 在由 TU 编码类型和值类别的表达式上的定义了一种二元关系。

引用

  • C++23 标准(ISO/IEC 14882:2024):
  • 18.7.5 Concept relation [concept.relation]
  • C++20 标准(ISO/IEC 14882:2020):
  • 18.7.5 Concept relation [concept.relation]