package orsetto
A library of assorted structured data interchange languages
Install
dune-project
Dependency
Authors
Maintainers
Sources
r1.0.3.tar.gz
sha256=151ca6df499bd3de7aa89a4e1627411fbee24c4dea6e0e71ce21f06f181ee654
md5=00393728b481c2bf15919a8202732335
doc/orsetto.ucs/Ucs_scan/index.html
Module Ucs_scan
Functional LL(x) parsing of Unicode text with monadic combinators.
Overview
This module specializes the
f_scan
core foundation parser combinator interface for use with Unicode texts. A scanner is a functional left-shift/left-reduce parser combinator, using a state-exception monad over the stream of input code points annotated with their position in the stream.
Interface
module type Profile = sig ... endThe signature of a Unicode scanner module.
module Create (P : Ucs_transport.Profile) : ProfileUse Create(UTF) to make scanner module for the encoding UTF.
val create : [< Ucs_transport.id ] -> (module Profile)Use create utf to make a scanner module for the UTF-8 encoding corresponding to utf.