W3cubDocs

/Haskell 8

Data.Time.Clock.TAI

Safe Haskell Safe
Language Haskell2010

Contents

Description

TAI and leap-second maps for converting to UTC: most people won't need this module.

data AbsoluteTime Source

AbsoluteTime is TAI, time as measured by a clock.

Instances
Instances details
Eq AbsoluteTime
Instance details

Defined in Data.Time.Clock.Internal.AbsoluteTime

Data AbsoluteTime
Instance details

Defined in Data.Time.Clock.Internal.AbsoluteTime

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> AbsoluteTime -> c AbsoluteTime Source

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c AbsoluteTime Source

toConstr :: AbsoluteTime -> Constr Source

dataTypeOf :: AbsoluteTime -> DataType Source

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c AbsoluteTime) Source

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c AbsoluteTime) Source

gmapT :: (forall b. Data b => b -> b) -> AbsoluteTime -> AbsoluteTime Source

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> AbsoluteTime -> r Source

gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> AbsoluteTime -> r Source

gmapQ :: (forall d. Data d => d -> u) -> AbsoluteTime -> [u] Source

gmapQi :: Int -> (forall d. Data d => d -> u) -> AbsoluteTime -> u Source

gmapM :: Monad m => (forall d. Data d => d -> m d) -> AbsoluteTime -> m AbsoluteTime Source

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> AbsoluteTime -> m AbsoluteTime Source

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> AbsoluteTime -> m AbsoluteTime Source

Ord AbsoluteTime
Instance details

Defined in Data.Time.Clock.Internal.AbsoluteTime

Show AbsoluteTime
Instance details

Defined in Data.Time.Clock.TAI

NFData AbsoluteTime
Instance details

Defined in Data.Time.Clock.Internal.AbsoluteTime

Methods

rnf :: AbsoluteTime -> () Source

taiEpoch :: AbsoluteTime Source

The epoch of TAI, which is 1858-11-17 00:00:00 TAI.

addAbsoluteTime :: DiffTime -> AbsoluteTime -> AbsoluteTime Source

addAbsoluteTime a b = a + b

diffAbsoluteTime :: AbsoluteTime -> AbsoluteTime -> DiffTime Source

diffAbsoluteTime a b = a - b

taiNominalDayStart :: Day -> AbsoluteTime Source

type LeapSecondMap = Day -> Maybe Int Source

TAI - UTC during this day. No table is provided, as any program compiled with it would become out of date in six months.

utcDayLength :: LeapSecondMap -> Day -> Maybe DiffTime Source

utcToTAITime :: LeapSecondMap -> UTCTime -> Maybe AbsoluteTime Source

taiToUTCTime :: LeapSecondMap -> AbsoluteTime -> Maybe UTCTime Source

taiClock :: Maybe (DiffTime, IO AbsoluteTime) Source

TAI clock, if it exists. Note that it is unlikely to be set correctly, without due care and attention.

Orphan instances

© The University of Glasgow and others
Licensed under a BSD-style license (see top of the page).
https://downloads.haskell.org/~ghc/8.8.3/docs/html/libraries/time-1.9.3/Data-Time-Clock-TAI.html