Simple-Utility v2.3.1
Loading...
Searching...
No Matches
sl::concepts::right_shift_assignable_with Concept Reference

Determines whether two types can be used in operator >>= statements. More...

#include <operators.hpp>

Concept definition

template<class T1, class T2>
concept sl::concepts::right_shift_assignable_with = requires(T1 lhs, T2 rhs)
{
{ lhs >>= rhs };
}
Determines whether two types can be used in operator >>= statements.
Definition: operators.hpp:150

Detailed Description

Determines whether two types can be used in operator >>= statements.

Template Parameters
T1The left-hand-side type
T2the right-hand-side-type