getTime :: FudgetIO f => (ClockTime -> f b ho) -> f b ho getLocalTime :: FudgetIO f => (CalendarTime -> f b ho) -> f b ho
These functions correspond to functions in the Haskell 98 Library module
Time
. getTime
corresponds to getClockTime
and
getLocalTime
corresponds to getClockTime >>= toCalendarTime
.
Time
library functions: getClockTime
, toCalendarTime
.