haskell / attoparsec

A fast Haskell library for parsing ByteStrings
http://hackage.haskell.org/package/attoparsec
Other
512 stars 93 forks source link

Add `parseOnly` versions for lazy input #175

Closed zuqq closed 3 years ago

zuqq commented 3 years ago

Previously, Data.Attoparsec.ByteString.Lazy just reexported Data.Attoparsec.ByteString.parseOnly, which only accepts strict input; same for Data.Attoparsec.Text.Lazy.

Documentation and pragmas were copied from the strict versions.

Closes: #143