From Jason Turner

[tuple.like]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmphvkvfhnp/{from.md → to.md} +11 -0
tmp/tmphvkvfhnp/{from.md → to.md} RENAMED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Concept <a id="tuple.like">[[tuple.like]]</a>
2
+
3
+ ``` cpp
4
+ template<class T>
5
+ concept tuple-like = see belownc; // exposition only
6
+ ```
7
+
8
+ A type `T` models and satisfies the exposition-only concept `tuple-like`
9
+ if `remove_cvref_t<T>` is a specialization of `array`, `pair`, `tuple`,
10
+ or `ranges::subrange`.
11
+