timezone-olson-0.1.9: Data/Time/LocalTime/TimeZone/Olson.hs
-----------------------------------------------------------------------------
-- |
-- Module : Data.Time.LocalTime.TimeZone.Olson
-- Copyright : Yitzchak Gale 2018
--
-- Maintainer : Yitzchak Gale <gale@sefer.org>
-- Portability : portable
--
-- A parser and renderer for binary Olson timezone files whose format
-- are specified by the tzfile(5) man page on Unix-like systems. For
-- more information about this format, see
-- <http://www.twinsun.com/tz/tz-link.htm>. Functions are provided for
-- converting the parsed data into @TimeZoneSeries@ and @TimeZone@
-- objects.
{- Copyright (c) 2018 Yitzchak Gale. All rights reserved.
For licensing information, see the BSD3-style license in the file
LICENSE that was originally distributed by the author together with
this file. -}
module Data.Time.LocalTime.TimeZone.Olson
(
module Data.Time.LocalTime.TimeZone.Olson.Parse,
module Data.Time.LocalTime.TimeZone.Olson.Render,
module Data.Time.LocalTime.TimeZone.Olson.Types
)
where
import Data.Time.LocalTime.TimeZone.Olson.Types
import Data.Time.LocalTime.TimeZone.Olson.Parse
import Data.Time.LocalTime.TimeZone.Olson.Render