Closed LVMVRQUXL closed 1 year ago
Implement the following declarations:
operator fun PositiveInt.div(other: StrictlyPositiveInt): PositiveInt = TODO() operator fun PositiveInt.div(other: StrictlyNegativeInt): NegativeInt = TODO() operator fun PositiveInt.rem(other: NonZeroInt): PositiveInt = TODO() operator fun PositiveInt.rem(other: StrictlyPositiveInt): PositiveInt = TODO() operator fun PositiveInt.rem(other: StrictlyNegativeInt): PositiveInt = TODO()
Description
Implement the following declarations:
Checklist