logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

std::copy_constructible - [concept.copyconstructible], concept copy_constructible

Author

       Generated automatically by Doxygen for libstdc++ from the source code.

                                                    libstdc++                      std::copy_constructible(3cxx)

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

Name

       std::copy_constructible - [concept.copyconstructible], concept copy_constructible

Synopsis

       #include <concepts>

See Also