/usr/lib/ocaml/batteries/batUref.mli is in libbatteries-ocaml-dev 2.6.0-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | (*
* Uref -- unifiable references
* Copyright (C) 2011 Batteries Included Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version,
* with the special exception on linking described in file LICENSE.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*)
(** Unifiable references using destructive union-find *)
type 'a uref
(** A [t uref] is a reference to a cell that contains a
value of type [t]. *)
type 'a t = 'a uref
(** A synonym for convenience *)
val uref : 'a -> 'a uref
(** [uref x] allocates a new uref and places the value [x] in it. *)
val uget : 'a uref -> 'a
(** [uget ur] returns the value stored in the uref [ur]. *)
val uset : 'a uref -> 'a -> unit
(** [uset ur x] updates the contents of [ur] with [x]. *)
val unite : ?sel:('a -> 'a -> 'a) -> 'a uref -> 'a uref -> unit
(** [unite ~sel ur1 ur2] unites the urefs [ur1] and [ur2], selecting
the result of [sel (uget ur1) (uget ur2)] for the contents of
the resulting united uref. After this operation, [uget ur1 ==
uget ur2]. By default, [sel] is [fun x _y -> x]. *)
val equal : 'a uref -> 'a uref -> bool
(** [equal ur1 ur2] returns [true] iff [ur1] and [ur2] are equal
urefs, either because they are physically the same or because
they have been {!unite}d. *)
(** {6 Printing} *)
val print : ('a, 'b) BatIO.printer -> ('a uref, 'b) BatIO.printer
(** Print the uref. *)
|