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

Determines whether two types can be used in operator * expressions. More...

#include <operators.hpp>

Concept definition

template<class TLhs, class TRhs>
concept sl::concepts::multiplies_with = requires(TLhs lhs, TRhs rhs)
{
{ lhs * rhs };
}
Determines whether two types can be used in operator * expressions.
Definition: operators.hpp:987

Detailed Description

Determines whether two types can be used in operator * expressions.

Template Parameters
TLhsThe left-hand-side type
TRhsthe right-hand-side-type