Description
Planet Mitchell.
Description
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 anEmailAddress
from aByteString
that is assumed to be valid.do other suspicious things like interleave
IO
with evaluation, asunsafePerformIO
, or lie to the type checker, asunsafeCoerce
. In a word, dragons.