times
Allows transforms to be combined sequentially.
val transformC = transformA * transformB
Content copied to clipboard
So applying transformC
is equivalent to applying transformA
then transformB
.
Allows transforms to be combined sequentially.
val transformC = transformA * transformB
So applying transformC
is equivalent to applying transformA
then transformB
.