plailude-0.6.0: src/Plailude.hs
{- |
Module : $Header$
Description : Prelude that exports all the most useful functions.
Copyright : (c) plaimi 2014
License : GPL-3
Maintainer : plailude@plaimi.net
-} module Plailude (
-- Control
(~+~),
both,
erretreat,
retreat,
-- Bool
if',
fi,
-- Function
(.:),
(.:.),
-- List
(!?),
-- Text
showL8,
-- Data.Time
Hour (MkHour),
Minute (MkMinute),
Second (MkSecond),
Year (MkYear),
Month (MkMonth),
Day (MkDay),
TimeUnit,
asSeconds,
fromGregorian,
timeVal,
) where
import Plailude.Control
import Plailude.Data.Text
import Plailude.Data.Time
import Plailude.Function