abstract fun multiply(value: T): T
(source)
Returns a value that is (this * value)
.
value
- The amount to multiply this value by.
Return
this * value
abstract fun multiply(value: Int): T
(source)
Returns a value that is (this * value)
.
value
- The amount to multiply this value by.
ArithmeticException
- value
< 0.
Return
this * value