]> gitweb @ CieloNegro.org - time-w3c.git/blob - Data/Time/W3C.hs
Haddock comments
[time-w3c.git] / Data / Time / W3C.hs
1 -- | This package provides functionalities to parse and format W3C
2 -- Date and Time. The package can also be used to convert it from/to
3 -- 'Data.Time.Calendar.Day' and 'Data.Time.LocalTime.ZonedTime'.
4 --
5 -- See: <http://www.w3.org/TR/NOTE-datetime>
6
7 module Data.Time.W3C
8     ( W3CDateTime(..)
9     , format
10     , parse
11     )
12     where
13
14 import Data.Time.W3C.Format
15 import Data.Time.W3C.Parser
16 import Data.Time.W3C.Types