1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
(**************************************************************************)
(* *)
(* The Why platform for program certification *)
(* Copyright (C) 2002-2008 *)
(* Romain BARDOU *)
(* Jean-Franois COUCHOT *)
(* Mehdi DOGGUY *)
(* Jean-Christophe FILLITRE *)
(* Thierry HUBERT *)
(* Claude MARCH *)
(* Yannick MOY *)
(* Christine PAULIN *)
(* Yann RGIS-GIANAS *)
(* Nicolas ROUSSET *)
(* Xavier URBAIN *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU General Public *)
(* License version 2, as published by the Free Software Foundation. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(* See the GNU General Public License version 2 for more details *)
(* (enclosed in the file GPL). *)
(* *)
(**************************************************************************)
module Option : sig
val equal : ('a -> 'a -> bool) -> 'a option -> 'a option -> bool
val some : 'a option -> 'a option -> 'a option
val app : ('a -> 'b) -> 'a option -> 'b option
val fold : ('a -> 'b -> 'b) -> 'a option -> 'b -> 'b
val binapp : ('a -> 'a -> 'b) -> 'a option -> 'a option -> 'b option
val transform : ('a -> 'a -> 'a) -> 'a option -> 'a option -> 'a option
val pretty :
(Format.formatter -> 'a -> unit) -> Format.formatter -> 'a option -> unit
end
module Pair : sig
val any : ('a -> bool) -> 'a -> 'a -> bool
val both : ('a -> bool) -> 'a -> 'a -> bool
module Make (L1 : Set.OrderedType) (L2 : Set.OrderedType)
: Set.OrderedType with type t = L1.t * L2.t
end
module StringSet : Set.S with type elt = string
module StringMap : Map.S with type key = string
module Int32Map : Map.S with type key = int32
module Int32Set : Set.S with type elt = int32
module Int31Map : Map.S with type key = int
module Int31Set : Set.S with type elt = int
val list1 : 'a list -> 'a
val list2 : 'a list -> 'a * 'a
val list3 : 'a list -> 'a * 'a * 'a
val list4 : 'a list -> 'a * 'a * 'a * 'a
val list5 : 'a list -> 'a * 'a * 'a * 'a * 'a
|