times

operator fun Money.times(by: Percentage): Money(source)

Multiplies this Money by the given Percentage.

Receiver

Money

Return

The resulting Money.

Parameters

by

The Percentage to multiply this Money by.


operator fun Number.times(money: Money): Money(source)

Multiplies a given Money by this Number.

Receiver

Number

Return

The resulting Money.

Parameters

money

A Money to multiply by this Number.


operator fun Percentage.times(money: Money): Money(source)

Multiplies a given Money by this Percentage.

Receiver

Percentage

Return

The resulting Money.

Parameters

money

The Money to multiply by this Percentage.