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