div

open operator fun div(divisor: Double): Measure<U>

Divides this measurement by some constant divisor and returns the result. This is equivalent to times(1 / divisor)

Return

the resulting measure

Parameters

divisor

the constant to divide by

See also

.times


open operator fun <U2 : Unit<U2>> div(other: Measure<U2>): Measure<*>

Divides this measurement by another measure and performs some dimensional analysis to reduce the units.

Return

the resulting measure

Parameters

the type of the other measure to multiply by
other

the unit to multiply by