Namespaces
Views
std::meta::is_trivially_copyable_type
From cppreference.com
C++
Metaprogramming library
| Type traits (C++11) | ||||
| Compile-time rational arithmetic (C++11) | ||||
| Compile-time integer sequences (C++14) | ||||
(C++14) | ||||
| Compile-time reflection (C++26) |
Reflection library
| Defined in header <meta>
|
||
consteval bool is_trivially_copyable_type( std::meta::info r );
|
(since C++26) | |
Returns true if r represents a trivially copyable type. Otherwise returns false.
Parameters
| r | - | a reflection value |
Return value
true if r represents a trivially copyable type; otherwise false.
Exceptions
Throws std::meta::exception if r does not represent a type or type alias.
Example
| This section is incomplete Reason: no example |
See also
(C++11) |
checks if a type is trivially copyable (class template) [edit] |
| checks if reflected type has a copy constructor (function) [edit] | |
| checks if reflected type has a copy assignment operator (function) [edit] |
