tmp/tmprgfqeh1p/{from.md → to.md}
RENAMED
|
@@ -2,11 +2,11 @@
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class R, class T> constexpr unspecified mem_fn(R T::* pm) noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
-
*Returns:* A simple call wrapper [[
|
| 8 |
-
`invoke(pmd, call_args...)`, where `pmd` is the target
|
| 9 |
-
type `R T::*` direct-non-list-initialized with `pm`,
|
| 10 |
-
an argument pack used in a function call
|
| 11 |
-
`
|
| 12 |
|
|
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class R, class T> constexpr unspecified mem_fn(R T::* pm) noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
+
*Returns:* A simple call wrapper [[term.simple.call.wrapper]] `fn` with
|
| 8 |
+
call pattern `invoke(pmd, call_args...)`, where `pmd` is the target
|
| 9 |
+
object of `fn` of type `R T::*` direct-non-list-initialized with `pm`,
|
| 10 |
+
and `call_args` is an argument pack used in a function call
|
| 11 |
+
expression [[expr.call]] of `fn`.
|
| 12 |
|