About

Metadata

  • Last updated , by mitchellwrosen
  • License BSD-3-Clause
  • Categories Prelude
  • Maintained by: Mitchell Rosen <mitchellwrosen@gmail.com>

  • Lottery factor: 0

Links

Installation

This package has been deprecated

Tested Compilers

  1. 8.6.1
  2. 8.4.3

Readme

Planet Mitchell.

This package provides a curated, highly unstable collection of reorganized re-exports. Mostly for personal use at the moment, me but please poke around and see README.md for a bit more information ;)

A note on module names:

Partial means the module contains partial functions that may throw exceptions if preconditions are violated.

Unsafe means the module contains unsafe functions that either:

  • assume that preconditions hold, e.g. unsafeEmailAddress, which constructs an EmailAddress from a ByteString that is assumed to be valid.

  • do other suspicious things like interleave IO with evaluation, as unsafePerformIO, or lie to the type checker, as unsafeCoerce. In a word, dragons.