tmp/tmpwafntxrs/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Non-member functions <a id="stopsource.nonmembers">[[stopsource.nonmembers]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
[[nodiscard]] friend bool
|
| 5 |
+
operator==(const stop_source& lhs, const stop_source& rhs) noexcept;
|
| 6 |
+
```
|
| 7 |
+
|
| 8 |
+
*Returns:* `true` if `lhs` and `rhs` have ownership of the same stop
|
| 9 |
+
state or if both `lhs` and `rhs` do not have ownership of a stop state;
|
| 10 |
+
otherwise `false`.
|
| 11 |
+
|
| 12 |
+
``` cpp
|
| 13 |
+
friend void swap(stop_source& x, stop_source& y) noexcept;
|
| 14 |
+
```
|
| 15 |
+
|
| 16 |
+
*Effects:* Equivalent to: `x.swap(y)`.
|
| 17 |
+
|