What is the best way to convert String to ByteString
Here is my cheat sheet for Haskell String/Text/ByteString strict/lazy conversion assuming the desired encoding is UTF-8. The Data.Text.Encoding library has other encodings available. Please make sure to not write (using OverloadedStrings): lazyByteString :: BL.ByteString lazyByteString = “lazyByteString ä ß” — BAD! This will get encoded in an unexpected way. Try lazyByteString = BLU.fromString “lazyByteString ä … Read more