Macro bounded_integer::bounded_integer_mul_repr_impls [] [src]

macro_rules! bounded_integer_mul_repr_impls {
    ($ty:ty) => { ... };
}

Implements std::ops::Mul<Self::Repr> for a BoundedInteger.

  • Self * Self::Repr -> Self
  • Self * &Self::Repr -> Self
  • &Self * Self::Repr -> Self
  • &Self * &Self::Repr -> Self

Implementations always panic on overflow.