.TH "std::assignable_from" 3cxx "Sun Jan 8 2023" "libstdc++" \" -*- nroff -*-
.ad l
.nh
.SH NAME
std::assignable_from \- [concept\&.assignable], concept assignable_from  

.SH SYNOPSIS
.br
.PP
.SH "Concept definition"
.PP 
.nf
template<typename _Lhs, typename _Rhs>
concept std::assignable_from =  is_lvalue_reference_v<_Lhs>
      && common_reference_with<__detail::__cref<_Lhs>, __detail::__cref<_Rhs>>
      && requires(_Lhs __lhs, _Rhs&& __rhs) {
        { __lhs = static_cast<_Rhs&&>(__rhs) } -> same_as<_Lhs>;
      }
.fi
.SH "Detailed Description"
.PP 
[concept\&.assignable], concept assignable_from 
.PP
Definition at line \fB123\fP of file \fBconcepts\fP\&.
.SH "Author"
.PP 
Generated automatically by Doxygen for libstdc++ from the source code\&.