Defined in header <functional> | ||
---|---|---|
struct identity; | (since C++20) |
std::identity
is a function object type whose operator()
returns its argument unchanged.
Member type | Definition |
---|---|
is_transparent | /* unspecified */ |
operator() | returns the argument unchanged (public member function) |
template< class T> constexpr T&& operator()( T&& t ) const noexcept; |
Returns std::forward<T>(t)
.
t | - | argument to return |
std::forward<T>(t)
.
The member type is_transparent
indicates to the caller that this function object is a transparent function object: it accepts arguments of arbitrary types and uses perfect forwarding, which avoids unnecessary copying and conversion when the function object is used in heterogeneous context, or with rvalue arguments. In particular, template functions such as std::set::find
and std::set::lower_bound
make use of this member type on their Compare
types.
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/utility/functional/identity