times
Function
Common
inline operator fun Int.times(size: Size) = size * this.toFloat()
Returns a Size
with size
's Size.width
and Size.height
multiplied by this
Common
inline operator fun Double.times(size: Size) = size * this.toFloat()
Returns a Size
with size
's Size.width
and Size.height
multiplied by this
Common
inline operator fun Float.times(size: Size) = size * this
Returns a Size
with size
's Size.width
and Size.height
multiplied by this