How do I convert DiffTime to NominalDiffTime?

2.7k Views Asked by At

Using the time library (time-1.5), I have a constant, e.g. 1 second. I don't see a way to create a NominalDiffTime, so I have created a DiffTime:

twoSeconds = secondsToDiffTime 2

Now I'd like to interact with a UTCTime:

now <- getCurrentTime
let twoSecondsAgo = addUTCTime (-twoSeconds) now

Which of course doesn't type check because addUTCTime expects a NominalDiffTime in argument 1 and I have passed a DiffTime. How do I convert between the two types? Or how can I create a NominalDiffTime of 2 seconds?

2

There are 2 best solutions below

1
On BEST ANSWER

NominalDiffTime and DiffTime both have RealFrac instances and thus both Fractional and Real instances.

You can convert either of them to the other by

fromRational . toRational

Which has type (Real a, Fractional c) => a -> c. This is a very common thing to do, and is provided in the standard prelude.

realToFrac     :: (Real a, Fractional b) => a -> b
realToFrac      =  fromRational . toRational

DiffTime and NominalDiffTime both have Num and Fractional instances. This means you can use both integer and floating literals in place of either of them. All of the following work without any additional ceremony.

addUTCTime (-2)
addUTCTime 600
addUTCTime 0.5
2
On

Since NominalDiffTime is an instance of Num, you can create it with fromInteger.

>>> fromInteger 1 :: NominalDiffTime
1s