table of contents
other versions
- testing 12.2.0-14
- unstable 12.2.0-14
- experimental 12.2.0-17
std::copy_constructible(3cxx) | std::copy_constructible(3cxx) |
NAME¶
std::copy_constructible - [concept.copyconstructible], concept copy_constructible
SYNOPSIS¶
Concept definition¶
template<typename _Tp> concept std::copy_constructible = move_constructible<_Tp>
&& constructible_from<_Tp, _Tp&> && convertible_to<_Tp&, _Tp>
&& constructible_from<_Tp, const _Tp&> && convertible_to<const _Tp&, _Tp>
&& constructible_from<_Tp, const _Tp> && convertible_to<const _Tp, _Tp>
Detailed Description¶
[concept.copyconstructible], concept copy_constructible
Definition at line 155 of file concepts.
Author¶
Generated automatically by Doxygen for libstdc++ from the source code.
Mon Aug 22 2022 | libstdc++ |