tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
etl::assignable_from Concept Reference

#include <etl/concepts.hpp>

Concept definition

template<typename LHS, typename RHS>
and requires(LHS lhs, RHS&& rhs) {
{ lhs = etl::forward<RHS>(rhs) } -> same_as<LHS>;
}
Definition assignable_from.hpp:19
The concept same_as<T, U> is satisfied if and only if T and U denote the same type....
Definition same_as.hpp:19
constexpr bool is_lvalue_reference_v
Definition is_lvalue_reference.hpp:20
constexpr auto forward(remove_reference_t< T > &param) noexcept -> T &&
Forwards lvalues as either lvalues or as rvalues, depending on T. When t is a forwarding reference (a...
Definition forward.hpp:18