basic-prelude: An enhanced core prelude; a common foundation for alternate preludes.

[ control, library, mit, prelude ] [ Propose Tags ]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.2.0.0, 0.3.0.0, 0.3.1.0, 0.3.2.0, 0.3.3.0, 0.3.4.0, 0.3.5.0, 0.3.6.0, 0.3.7, 0.3.8, 0.3.9, 0.3.10, 0.3.11, 0.3.11.1, 0.3.12, 0.3.13, 0.4.0, 0.4.1, 0.5.0, 0.5.1, 0.5.2, 0.6.1, 0.6.1.1, 0.7.0
Change log ChangeLog.md
Dependencies base (>=4.6 && <5), bytestring, containers, filepath, hashable, text, transformers, unordered-containers, vector [details]
License MIT
Author Michael Snoyman, Dan Burton
Maintainer michael@snoyman.com
Category Control, Prelude
Home page https://github.com/snoyberg/basic-prelude#readme
Bug tracker https://github.com/snoyberg/basic-prelude/issues
Source repo head: git clone https://github.com/snoyberg/basic-prelude
Uploaded by MichaelSnoyman at 2017-12-05T04:23:56Z
Distributions Arch:0.7.0, Debian:0.7.0, Fedora:0.7.0, FreeBSD:0.5.0, LTSHaskell:0.7.0, NixOS:0.7.0, Stackage:0.7.0
Reverse Dependencies 34 direct, 231 indirect [details]
Downloads 44026 total (112 in the last 30 days)
Rating 2.25 (votes: 2) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2017-12-05 [all 1 reports]

Readme for basic-prelude-0.7.0

[back to package description]

basic-prelude

The premise of basic-prelude is that there are a lot of very commonly desired features missing from the standard Prelude, such as commonly used operators (<$> and >=>, for instance) and imports for common datatypes (e.g., ByteString and Vector). At the same time, there are lots of other components which are more debatable, such as providing polymorphic versions of common functions.

So basic-prelude is intended to give a common foundation for a number of alternate preludes. The package provides two modules: CorePrelude provides the common ground for other preludes to build on top of, while BasicPrelude exports CorePrelude together with commonly used list functions to provide a drop-in replacement for the standard Prelude.

Users wishing to have an improved Prelude can use BasicPrelude. Developers wishing to create a new prelude should use CorePrelude.