std::meta::is_constructor_template
From cppreference.com
| Defined in header <meta>
|
||
consteval bool is_constructor_template( std::meta::info r );
|
(since C++26) | |
Returns true if r represents a constructor template. Otherwise returns false.
Parameters
| r | - | a reflection value |
Return value
true if r represents a constructor template; otherwise false.
Example
Run this code
#include <meta>
int main() {}
See also
(C++26) |
checks if reflection represents a special member function (function) |
(C++26) |
checks if reflected entity is produced by substituting template arguments into a template (function) |