Namespaces
Variants

std::meta::is_constructor_template

From cppreference.com
< cpp | meta
 
 
 
Reflection library
 
Reflection types and queries
Type properties
Type property queries
 
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

#include <meta>

int main() {}

See also

checks if reflection represents a special member function
(function) [edit]
checks if reflected entity is produced by substituting template arguments into a template
(function) [edit]