Create.Bmodule Scan :
Cf_scan.Profile
with type symbol := symbol
and type position := position
and type 'a form := 'a formThe basis scanner used by the lexical analyzer.
module Form : Cf_scan.Form with type 'a t := 'a formThe scanner production form.
module DFA : Cf_dfa.Profile with type event := symbolThe deterministic finite automaton for the symbol type.
The lexical buffer module.
val string_to_term : string -> DFA.termScanners use string_to_term s to make a DFA term that represents the regular expression denoted by s.