data-or: A data type for non-exclusive disjunction.

[ bsd3, data, library ] [ Propose Tags ]

A data type for non-exclusive disjunction.


[Skip to Readme]

Modules

[Index]

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

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] 1.0.0, 1.0.0.4, 1.0.0.5, 1.0.0.7
Change log CHANGELOG
Dependencies base (<5) [details]
License BSD-3-Clause
Copyright Copyright (c) 2010--2015 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-or
Uploaded by WrenThornton at 2015-05-30T05:41:38Z
Distributions LTSHaskell:1.0.0.7, NixOS:1.0.0.7, Stackage:1.0.0.7
Reverse Dependencies 2 direct, 11 indirect [details]
Downloads 3536 total (20 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-06-03 [all 1 reports]

Readme for data-or-1.0.0.5

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

This is a simple package and 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-or
    
    -- With cabal-install and with the source already:
    $> cd data-or
    $> cabal install
    
    -- Without cabal-install, but with the source already:
    $> cd data-or
    $> 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
===========

An attempt has been made to keep this library as portable as possible.
It is Haskell98 except for the use of CPP, which allows some functions
to be good producers for list fusion in GHC.

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