Open 3D Engine AzCore API Reference 23.10.0
O3DE is an open-source, fully-featured, high-fidelity, modular 3D engine for building games and simulations, available to every industry.
AZStd::identity Struct Reference

#include <identity.h>

Public Types

using is_transparent = void
 

Public Member Functions

template<typename T >
constexpr T && operator() (T &&t) const
 

Detailed Description

Implements the C++20 std::identity type trait Note: 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.


The documentation for this struct was generated from the following file: