From Jason Turner

[alg.req.ind.cmp]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpkfc9dpcq/{from.md → to.md} +12 -0
tmp/tmpkfc9dpcq/{from.md → to.md} RENAMED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Concept <a id="alg.req.ind.cmp">[[alg.req.ind.cmp]]</a>
2
+
3
+ The `indirectly_comparable` concept specifies the common requirements of
4
+ algorithms that compare values from two different sequences.
5
+
6
+ ``` cpp
7
+ template<class I1, class I2, class R, class P1 = identity,
8
+ class P2 = identity>
9
+ concept indirectly_comparable =
10
+ indirect_binary_predicate<R, projected<I1, P1>, projected<I2, P2>>;
11
+ ```
12
+