File: type_options.ml

package info (click to toggle)
mldonkey 2.8.1-2etch1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 16,940 kB
  • ctags: 26,220
  • sloc: ml: 138,666; sh: 15,368; cpp: 12,076; ansic: 8,243; asm: 3,858; xml: 3,367; perl: 1,831; makefile: 259; python: 258
file content (17 lines) | stat: -rw-r--r-- 328 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
type options_value =
ValModule of file
| ValInt of int64
| ValFloat of float
| ValList of ( options_value list )
| ValString of string
| ValChar of string
| ValIdent of string

and options =
StringId of string * options_value
| Id of string * options_value

and file =
Comment of string * file
| Options of options * file
| Eof