module Raw:sig
..end
type
cp =
| |
String of |
| |
Int of |
| |
Float of |
| |
List of |
| |
Tuple of |
| |
Section of |
module Parse:sig
..end
val save : Format.formatter -> cp -> unit
val to_channel : Pervasives.out_channel -> cp -> unit
val of_string : string -> cp
val of_channel : Pervasives.in_channel -> (string * cp) list