plailude-0.4.1: 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,
-- Function
(.:),
(.:.),
-- Data.String
vbs,
vbsl,
vstr,
vtxt,
vtxtl,
-- Data.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.String
import Plailude.Data.Text
import Plailude.Data.Time
import Plailude.Function