13 template <
class T,
class U>
15 constexpr
operator bool()
const{
17 std::declval<T>() = std::declval<U>()
18 )>(),
"AssignableWith<T,U>: Should be able to T = U");
Global namespace of the SCL.
AssignableWith concept, a type U is assignable to a type T if operator=() is defined for both types (...