aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/util.mli
diff options
context:
space:
mode:
authorGravatar Pierre Boutillier <pierre.boutillier@ens-lyon.org>2014-12-14 12:01:59 +0100
committerGravatar Pierre Boutillier <pierre.boutillier@ens-lyon.org>2014-12-14 23:38:21 +0100
commitab1e5d1f9180daa64924b0b398300cd311611045 (patch)
treec07439bb0f5d1d7709603bce6a448cce5af97c7f /lib/util.mli
parent2db658105f8ed20ca2153271b339c777b79da406 (diff)
Util.un_op -> Option.default
Diffstat (limited to 'lib/util.mli')
-rw-r--r--lib/util.mli4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/util.mli b/lib/util.mli
index bcb1b6265..86720fe47 100644
--- a/lib/util.mli
+++ b/lib/util.mli
@@ -89,10 +89,6 @@ val iterate : ('a -> 'a) -> int -> 'a -> 'a
val repeat : int -> ('a -> unit) -> 'a -> unit
val app_opt : ('a -> 'a) option -> 'a -> 'a
-(** [un_opt opt default] returns the content of [opt] if possible and
- default otherwise. *)
-val un_opt : 'a option -> 'a -> 'a
-
(** {6 Delayed computations. } *)
type 'a delayed = unit -> 'a