I have a RelTime
duration that I would like to multiply by some value to scale it. So, what I would like to do is:
import DA.Time
let five = seconds 5
let fiveteen = five * 3
Is there an obvious to do so via the standard library that I am missing?
Thanks!
Arne