From Jason Turner

[stacktrace.basic.cmp]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmp8ropya8g/{from.md → to.md} +19 -0
tmp/tmp8ropya8g/{from.md → to.md} RENAMED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Comparisons <a id="stacktrace.basic.cmp">[[stacktrace.basic.cmp]]</a>
2
+
3
+ ``` cpp
4
+ template<class Allocator2>
5
+ friend bool operator==(const basic_stacktrace& x, const basic_stacktrace<Allocator2>& y) noexcept;
6
+ ```
7
+
8
+ *Returns:* `equal(x.begin(), x.end(), y.begin(), y.end())`.
9
+
10
+ ``` cpp
11
+ template<class Allocator2>
12
+ friend strong_ordering
13
+ operator<=>(const basic_stacktrace& x, const basic_stacktrace<Allocator2>& y) noexcept;
14
+ ```
15
+
16
+ *Returns:* `x.size() <=> y.size()` if `x.size() != y.size()`;
17
+ `lexicographical_compare_three_way(x.begin(), x.end(), y.begin(), y.end())`
18
+ otherwise.
19
+