|
|
|
| Description |
Parse text files containing lines with records separated by character
delimiters.
At this time parsing is only supported for lazy ByteStrings.
|
|
| Synopsis |
|
|
|
| Documentation |
|
|
| Encode records separated by newlines to a ByteString.
Record fields are separated by delim.
|
|
|
| Parse records separated by newlines from a ByteString.
Record fields are separated by any of the characters in delims. There is
no way of escaping delimiters, so record fields may not contain any of the
characters in delims.
|
|
|
| Decode a ByteString, apply a function to each Record and encode the content.
Delimiters may contain multiple characters but only the first is used for
encoding.
|
|
|
| A delimited file is a series of variable length records.
|
|
|
| A record is a series of fields.
Each record is located on a separate line, delimited by a line break (CRLF).
|
|
|
| A field is a strict ByteString.
|
|
|
| Result type.
|
|
| Produced by Haddock version 2.4.2 |