package ocaml-webworker

  1. Overview
  2. Docs
module Json : sig ... end
type json = [
  1. | `Assoc of (string * json) list
  2. | `Bool of bool
  3. | `Float of float
  4. | `Int of int
  5. | `List of json list
  6. | `Null
  7. | `String of string
]
module Hashtbl : sig ... end
module List : sig ... end
module Option : sig ... end
module String : sig ... end
val sprintf : ('a, unit, string) Pervasives.format -> 'a
module Format : sig ... end
module Either : sig ... end
type ('a, 'b) either = ('a, 'b) Either.t
type 'a or_exn = (exn, 'a) Either.t
module Lexing : sig ... end
module Char : sig ... end
module Glob : sig ... end
module Obj : sig ... end
val fprintf : Format.formatter -> ('a, Format.formatter, unit) Pervasives.format -> 'a
val lazy_eq : 'a Lazy.t -> 'a Lazy.t -> bool
val let_ref : 'a Pervasives.ref -> 'a -> (unit -> 'b) -> 'b
val failwithf : ('a, unit, string, 'b) Pervasives.format4 -> 'a
module Shell : sig ... end
val modules_in_path : ext:string -> string list -> string list
val file_contents : string -> string
val reraise : exn -> 'a