module Raw:sig
..end
The type of cp freshly parsed from configuration file, not yet wrapped in their proper type.
type
cp =
| |
String of |
(* | base types, reproducing the tokens of Genlex | *) |
| |
Int of |
|||
| |
Float of |
|||
| |
List of |
(* | compound types | *) |
| |
Tuple of |
|||
| |
Section of |
val of_string : string -> cp
A parser.
val to_channel : Stdlib.out_channel -> cp -> unit
Used to print the values into a log file for instance.