abstract fun divide(value: T): T
(source)
Returns a value that is (this / value)
.
value
- T: The amount to divide this value by.
ArithmeticException
- value
== 0.
Return
T: this / value
abstract fun divide(value: Int): T
(source)
Returns a value that is (this / value)
.
value
- Int: The amount to divide this value by.
ArithmeticException
- value
≤ 0.
Return
T: this / value