std::pointer_to_unary_function
来自cppreference.com
< cpp | utility | functional
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
template< class Arg, |
(已弃用) | |
std::pointer_to_unary_function
是一个函数对象,作为一个一元函数的包装.原文:
std::pointer_to_unary_function
is a function object that acts as a wrapper around a unary function.[编辑] 成员函数
(constructor) |
constructs a new pointer_to_unary_function object with the supplied function (公共成员函数) |
operator() |
调用存储功能 (公共成员函数) |
的std :: pointer_to_unary_function ::pointer_to_unary_function
explicit pointer_to_unary_function( Result (*f)(Arg) ); |
||
Constructs a pointer_to_unary_function
function object with the stored function f
.
Parameters
f | - | 一个函数来存储指针
|
的std :: pointer_to_unary_function ::operator()
Result operator()( Arg x ) const; |
||
Calls the stored function.
Parameters
x | - | 参数传递给函数
|
Return value
The value returned by the called function.
[编辑] 另请参阅
适配器兼容的封装为一个二元函数的指针 原文: adaptor-compatible wrapper for a pointer to binary function (类模板) | |
(已弃用) |
创建适配器兼容功能的包装对象从一个指针到函数 原文: creates an adaptor-compatible function object wrapper from a pointer to function (函数模板) |