data-fin: Finite totally ordered sets

[ bsd3, data, library ] [ Propose Tags ]

Finite totally ordered sets


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
base4

base-4.0 emits "Prelude deprecated" messages in order to get people to be explicit about which version of base they use.

Enabled
splitbase

base-3.0 (GHC 6.8) broke out the packages: array, bytestring, containers, directory, old-locale, old-time, packedstring, pretty, process, random.

Enabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0, 0.1.1, 0.1.1.1, 0.1.1.2, 0.1.1.3
Dependencies base (<5), lazysmallcheck (>=0.5 && <0.7), prelude-safeenum (<0.2), QuickCheck (>=2.4.1.1 && <2.8), reflection (>=1.1.6 && <1.6), smallcheck (>=0.4 && <1.2), tagged (>=0.2.3 && <0.8) [details]
License BSD-3-Clause
Copyright Copyright (c) 2012--2014 wren gayle romano
Author wren gayle romano
Maintainer wren@community.haskell.org
Category Data
Home page http://code.haskell.org/~wren/
Source repo head: darcs get http://community.haskell.org/~wren/data-fin
Uploaded by WrenThornton at 2014-08-16T07:51:03Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 4133 total (13 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Successful builds reported [all 1 reports]

Readme for data-fin-0.1.1.3

[back to package description]
data-fin
========

While this package uses complex type machinery, it should be easy
to install. You should be able to use one of the following standard
methods to install it.

    -- With cabal-install and without the source:
    $> cabal install data-fin
    
    -- With cabal-install and with the source already:
    $> cd data-fin
    $> cabal install
    
    -- Without cabal-install, but with the source already:
    $> cd data-fin
    $> runhaskell Setup.hs configure --user
    $> runhaskell Setup.hs build
    $> runhaskell Setup.hs test
    $> runhaskell Setup.hs haddock --hyperlink-source
    $> runhaskell Setup.hs copy
    $> runhaskell Setup.hs register

The test step is optional and currently does nothing. The Haddock
step is also optional.


Portability
===========

While I usually try to keep things as portable as possible, this
package relies on many GHC language extensions. Thus, no claim of
portability ot non-GHC compilers is made. All the required language
extensions are:

CPP
DeriveDataTypeable
EmptyDataDecls
FlexibleContexts
FlexibleInstances
FunctionalDependencies
MultiParamTypeClasses
Rank2Types
ScopedTypeVariables
TypeOperators
Trustworthy  -- GHC >= 7.1 only
UndecidableInstances

----------------------------------------------------------- fin.