19
General utilities library
[utilities]
19.14
Function objects
[function.objects]
19.14.13
Function template
mem_fn
[func.memfn]
🔗
template<class R, class T>
unspecified
mem_fn(R T::* pm) noexcept;
1
#
Returns:
A simple
call wrapper
fn
such that the expression
fn(t, a
2
,
…
, a
N
)
is equivalent to
INVOKE
(pm, t, a
2
,
…
, a
N
)
(
[func.require]
)
.