@hackage planet-mitchell0.1.0

Planet Mitchell

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.