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