Description
Provides a generic incremental parser library that can return partial results from partial input. This is useful when data arrives over time, such as from streams, network connections, editors, or large files.
Developers use it when a Haskell parser should keep useful state instead of waiting for all input at once. It is a code library and not a standalone parsing application.