Function Subspace :: sus :: num :: operator%
Computes the remainder of l
divided by r
, also known as the modulo
operation.
Satisfies the Rem
concept for unsigned integers.
This operation supports working with primitive unsigned integers that convert to the safe numeric, as well as enums. However enum class is excluded as they require an explicit conversion to an integer.
Panics
This operation will panic if r
is 0.