tmp/tmpbwnzj3fw/{from.md → to.md}
RENAMED
|
@@ -15,13 +15,13 @@ namespace std::this_thread {
|
|
| 15 |
``` cpp
|
| 16 |
thread::id this_thread::get_id() noexcept;
|
| 17 |
```
|
| 18 |
|
| 19 |
*Returns:* An object of type `thread::id` that uniquely identifies the
|
| 20 |
-
current thread of execution.
|
| 21 |
-
|
| 22 |
-
|
| 23 |
|
| 24 |
``` cpp
|
| 25 |
void this_thread::yield() noexcept;
|
| 26 |
```
|
| 27 |
|
|
|
|
| 15 |
``` cpp
|
| 16 |
thread::id this_thread::get_id() noexcept;
|
| 17 |
```
|
| 18 |
|
| 19 |
*Returns:* An object of type `thread::id` that uniquely identifies the
|
| 20 |
+
current thread of execution. Every invocation from this thread of
|
| 21 |
+
execution returns the same value. The object returned does not compare
|
| 22 |
+
equal to a default-constructed `thread::id`.
|
| 23 |
|
| 24 |
``` cpp
|
| 25 |
void this_thread::yield() noexcept;
|
| 26 |
```
|
| 27 |
|