std::copy_constructible
[concept.copyconstructible], concept copy_constructible
- Provided by: libstdc++-13-doc (Version: 13.3.0-6ubuntu2~24.04.1)
- Source: gcc-13
- Report a bug
[concept.copyconstructible], concept copy_constructible
#include <concepts>
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>
[concept.copyconstructible], concept copy_constructible
Generated automatically by Doxygen for libstdc++ from the source code.