module Ocsigen_lib_base: sig
.. end
This module just contains only extensions of the standard library and very
basic Ocsigen values and exceptions. Cf.
Ocsigen_lib
for functionality
which depends on specific external libraries.
exception Ocsigen_Internal_Error of string
exception Input_is_too_large
exception Ocsigen_Bad_Request
exception Ocsigen_Request_too_long
val (>>=) : 'a Lwt.t -> ('a -> 'b Lwt.t) -> 'b Lwt.t
val (>|=) : 'a Lwt.t -> ('a -> 'b) -> 'b Lwt.t
val (!!) : 'a Lazy.t -> 'a
val id : 'a -> 'a
val comp : ('a -> 'b) -> ('c -> 'a) -> 'c -> 'b
val curry : ('a * 'b -> 'c) -> 'a -> 'b -> 'c
val uncurry : ('a -> 'b -> 'c) -> 'a * 'b -> 'c
module Tuple3: sig
.. end
type
poly
val to_poly : 'a -> poly
val from_poly : poly -> 'a
type
yesnomaybe =
type ('a, 'b)
leftright =
| |
Left of 'a |
| |
Right of 'b |
val advert : string
module Option: sig
.. end
module List: sig
.. end
module Clist: sig
.. end
Circular lists
module Int: sig
.. end
module String_base: sig
.. end
module Url_base: sig
.. end
module Printexc: sig
.. end
val debug : string -> unit