tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
is_copy_constructible< T > Struct Template Reference

If T is not a referenceable type (i.e., possibly cv-qualified void or a function type with a cv-qualifier-seq or a ref-qualifier), provides a member constant value equal to false. Otherwise, provides a member constant value equal to etl::is_constructible<T, T const&>::value. More...

#include <is_copy_constructible.hpp>

Inheritance diagram for is_copy_constructible< T >:
integral_constant< bool, B >< false >

Detailed Description

template<typename T>
struct etl::is_copy_constructible< T >

If T is not a referenceable type (i.e., possibly cv-qualified void or a function type with a cv-qualifier-seq or a ref-qualifier), provides a member constant value equal to false. Otherwise, provides a member constant value equal to etl::is_constructible<T, T const&>::value.

T shall be a complete type, (possibly cv-qualified) void, or an array of unknown bound. Otherwise, the behavior is undefined. If an instantiation of a template above depends, directly or indirectly, on an incomplete type, and that instantiation could yield a different result if that type were hypothetically completed, the behavior is undefined.

The behavior of a program that adds specializations for any of the templates described on this page is undefined.


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