Files
2025-10-25 03:02:53 +03:00

16 lines
817 B
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[concept.relation]
# 18 Concepts library [[concepts]](./#concepts)
## 18.7 Callable concepts [[concepts.callable]](concepts.callable#concept.relation)
### 18.7.5 Concept relation [concept.relation]
[🔗](#concept:relation)
`template<class R, class T, class U>
concept [relation](#concept:relation "18.7.5Concept relation[concept.relation]") =
[predicate](concept.predicate#concept:predicate "18.7.4Concept predicate[concept.predicate]")<R, T, T> && [predicate](concept.predicate#concept:predicate "18.7.4Concept predicate[concept.predicate]")<R, U, U> &&
[predicate](concept.predicate#concept:predicate "18.7.4Concept predicate[concept.predicate]")<R, T, U> && [predicate](concept.predicate#concept:predicate "18.7.4Concept predicate[concept.predicate]")<R, U, T>;
`