attosplit-0.1.0.0: Split a lazy bytestring at boundaries defined by an attoparsec parser

Portabilityportable
MaintainerYitz Gale <yitzg@suite-sol.com>

Data.Attoparsec.Split

Description

Split a lazy bytestring into a lazy list of lazy bytestrings at boundaries defined by an attoparsec parser. The result of a matching parse is included at the beginning of the lazy bytestring which begins at that point.

Synopsis

Documentation

split :: Parser ByteString -> ByteString -> [ByteString]Source

Split a lazy bytestring at boundaries defined by an attoparsec parser.