Function Subspace :: sus :: num :: operator/

auto operator/(u32 l, u32 r) -> u32

Computes l divided by r.

Satisfies the Div 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.