neongreen · GitHub

Folders and files

NameName

Last commit message

Last commit date

Latest commit

History

31 Commits

to contains type conversions for popular Haskell types. All provided conversions are safe and boring.

Why?

  • No orphan instances (rules out conversion).

  • Descriptive names (rules out string-conversions which lets people use cs).

  • Does not mix conversion and rendering (rules out bytestring-conversions).

  • Encourages lenient decoding (rules out text and string-conv).

  • Requires specifying encoding.

TODO

  • Numbers
  • Vectors, sequences
  • ShortByteString and Data.ByteString.Builder

Read the original on github.com ↗