Simple-Vector v1.3.0
sl::vec::mod_assignable Concept Reference

Checks if the given type can be used in mutable modulo operations. More...

#include <Concepts.hpp>

Concept definition

template<class TFrom, class TTo TFrom>
concept sl::vec::mod_assignable = requires(TTo lhs, TFrom rhs)
{
{ lhs %= rhs };
}
Checks if the given type can be used in mutable modulo operations.
Definition: Concepts.hpp:75

Detailed Description

Checks if the given type can be used in mutable modulo operations.

Template Parameters
TFromRight-hand-side type of operation
TToLeft-hand-side type of operation