Simple-Utility v2.3.1
Loading...
Searching...
No Matches
sl::concepts::divides_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::divides_with = requires(TLhs lhs, TRhs rhs)
{
{ lhs / rhs };
}
Determines whether two types can be used in operator / expressions.
Definition: operators.hpp:1067

Detailed Description

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

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