Deprecated

planet-mitchell

Planet Mitchell

https://github.com/mitchellwrosen/planet-mitchell

Latest on Hackage:0.1.0

This package is not currently in any snapshots. If you're interested in using it, we recommend adding it to Stackage Nightly. Doing so will make builds more reliable, and allow stackage.org to host generated Haddocks.

BSD-3-Clause licensed by Mitchell Rosen
Maintained by Mitchell Rosen

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.