Range-v3
Range algorithms, views, and actions for the Standard Library
concepts::defs::assignable_from_ Concept Reference

The assignable_from_ concept. More...

#include <concepts/concepts.hpp>

Concept definition

template<typename T, typename U>
concept concepts::defs::assignable_from_ = requires( T t, U && u ) { t = (U &&) u, requires_<same_as<T, decltype(t = (U &&) u)>> ; }
The assignable_from_ concept.
Definition: concepts.hpp:966
The same_as concept.
Definition: concepts.hpp:853

Detailed Description

The assignable_from_ concept.