std::identity
< cpp | utility | functional
定义于头文件 <functional>
|
||
struct identity; |
(C++20 起) | |
std::identity
是函数对象类型,其 operator() 返回其不更改的参数。
成员类型
成员类型 | 定义 |
is_transparent
|
/* 未指定 */ |
成员函数
operator() |
返回不更改的参数 (公开成员函数) |
std::identity::operator()
template< class T> constexpr T&& operator()( T&& t ) const noexcept; |
||
返回 std::forward<T>(t) 。
参数
t | - | 要返回的参数 |
返回值
std::forward<T>(t) 。
注意
成员类型 is_transparent
指示调用方,此函数对象是一个通透函数对象:它接受任意类型的参数并使用完美转发,这在将函数对象在多种语境中,或以右值参数使用时,避免不需要的复制和转换。特别是,诸如 std::set::find 和 std::set::lower_bound 的模板函数在其 Compare
类型上使用此类型。
示例
本节未完成 原因:暂无示例 |