Cf_lex_scanFunctional lexical analyzers.
This module implements functional combinators for parsing languages that comprise sequences of regular tokens recognized by a deterministic finite automaton, using the
f_regx
module.
module type Buffer = sig ... endDefine a module with this signature to represent an imperative interface to a buffer that appends symbols in sequence until a lexeme is recognized.
module type Basis = sig ... endDefine a module with this signature to specialize the lexical analyzer.
module type Profile = sig ... endThe signature of a lexical analyzing scanner.