File: Convertible.hs

package info (click to toggle)
haskell-convertible 1.1.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 200 kB
  • sloc: haskell: 2,230; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 1,144 bytes parent folder | download | duplicates (7)
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 ()