1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
{-
Copyright (C) 2009-2011 John Goerzen <jgoerzen@complete.org>
All rights reserved.
For license and copyright information, see the file LICENSE
-}
{- |
Module : Data.Convertible.Base
Copyright : Copyright (C) 2009-2011 John Goerzen
License : BSD3
Maintainer : John Goerzen <jgoerzen@complete.org>
Stability : provisional
Portability: portable
This is a library to provide a uniform interface for safe conversions between
different types of data. To get started reading about it, consult:
"Data.Convertible.Base" for information about the conversions themselves
"Data.Convertible.Utils" for helpful tools for people writing 'Convertible' instances
"Data.Convertible.Instances" for a large collection of ready-built 'Convertible' instances
You can import these modules individually, or this module will export the entire library
for you.
-}
module Data.Convertible (
module Data.Convertible.Base,
module Data.Convertible.Utils
)
where
import Data.Convertible.Base
import Data.Convertible.Utils
import Data.Convertible.Instances ()
|