-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/
-- | The haskell application server stack + code generation
--
-- The haskell application server stack
@package happstack
@version 6.0.1
-- | instances of Typeable, Data, Serialize, Version, and Default for
-- ClockTime
module Happstack.State.ClockTime
-- | A representation of the internal clock time. Clock times may be
-- compared, converted to strings, or converted to an external calendar
-- time CalendarTime for I/O or other manipulations.
data ClockTime :: *
-- | Construct a clock time. The arguments are a number of seconds since
-- 00:00:00 (UTC) on 1 January 1970, and an additional number of
-- picoseconds.
--
-- In Haskell 98, the ClockTime type is abstract.
TOD :: Integer -> Integer -> ClockTime
instance Default ClockTime
instance (Data ctx Integer, Sat (ctx ClockTime), Sat (ctx Integer)) => Data ctx ClockTime
instance Serialize ClockTime
instance Data ClockTime
instance Typeable ClockTime
instance Version ClockTime