File: saver.mli

package info (click to toggle)
hevea 2.38-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,824 kB
  • sloc: ml: 19,525; sh: 505; makefile: 311; ansic: 132
file content (18 lines) | stat: -rw-r--r-- 366 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module type Config = sig
  type t
  val of_string : string -> t
  val of_out : Out.t -> t
end


module type S = sig
  type out
  val opt : Lexing.lexbuf -> out
  val arg : Lexing.lexbuf -> out
  val arg2 : Lexing.lexbuf -> out
end

module Make(C:Config) : S with type out = C.t
  
module String : S with type out = string
module List : S with type out = string list