split: Combinator library for splitting lists.

[ bsd3, library, list ] [ Propose Tags ]

Combinator library and utility functions for splitting lists.


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
testing

Testing mode

Disabled

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

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1, 0.1.1, 0.1.2, 0.1.2.1, 0.1.2.2, 0.1.2.3, 0.1.3, 0.1.4, 0.1.4.1, 0.1.4.2, 0.1.4.3, 0.2.0.0, 0.2.1.0, 0.2.1.1, 0.2.1.2, 0.2.1.3, 0.2.2, 0.2.3, 0.2.3.1, 0.2.3.2, 0.2.3.3, 0.2.3.4, 0.2.3.5, 0.2.4, 0.2.5
Dependencies base (<4.3) [details]
License BSD-3-Clause
Author Brent Yorgey
Maintainer byorgey@cis.upenn.edu
Revised Revision 1 made by HerbertValerioRiedel at 2016-05-21T14:47:21Z
Category List
Home page http://code.haskell.org/~byorgey/code/split
Uploaded by BrentYorgey at 2010-09-14T22:02:52Z
Distributions Arch:0.2.5, Debian:0.2.3.4, Fedora:0.2.3.5, FreeBSD:0.2.2, LTSHaskell:0.2.5, NixOS:0.2.5, Stackage:0.2.5, openSUSE:0.2.5
Reverse Dependencies 536 direct, 7499 indirect [details]
Downloads 232610 total (551 in the last 30 days)
Rating 2.25 (votes: 2) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for split-0.1.2.1

[back to package description]
Data.List.Split provides a wide range of strategies and a unified
combinator framework for splitting lists with respect to some sort of
delimiter.

------------------------------------------------------------------------

Dependencies:

  There are no dependencies other than the base package.
  Data.List.Split has been tested with GHC 6.8.3 and 6.10.1, but it
  will likely work with older versions of GHC and other Haskell
  compilers as well.

  The Properties.hs file depends on QuickCheck >= 2.1, but you don't
  need it in order to build the library.


Build with Cabal:

    cabal install --prefix=$HOME --user

  Or, if you don't have the 'cabal' tool:
    
    runhaskell Setup.lhs configure --prefix=$HOME --user
    runhaskell Setup.lhs build
    runhaskell Setup.lhs install

  (Optionally, you can omit the --prefix and --user arguments to the
  configure step, and run the install step with 'sudo' in order to
  install the library systemwide.)


Building Haddock documentation (recommended):

    runhaskell Setup.lhs haddock

  Once the documentation has been built, you can access it by 
  pointing your browser to dist/doc/html/split/index.html.