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
60
61
62
63
64
65
66
67
open! Import
include (
struct
type 'a t = 'a ref [@@deriving_inline compare, equal, sexp, sexp_grammar]
let compare : 'a. ('a -> 'a -> int) -> 'a t -> 'a t -> int = compare_ref
let equal : 'a. ('a -> 'a -> bool) -> 'a t -> 'a t -> bool = equal_ref
let t_of_sexp : 'a. (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a t = ref_of_sexp
let sexp_of_t : 'a. ('a -> Sexplib0.Sexp.t) -> 'a t -> Sexplib0.Sexp.t = sexp_of_ref
let (t_sexp_grammar : 'a Sexplib0.Sexp_grammar.t -> 'a t Sexplib0.Sexp_grammar.t) =
fun _'a_sexp_grammar -> ref_sexp_grammar _'a_sexp_grammar
;;
[@@@end]
end :
sig
type 'a t = 'a ref [@@deriving_inline compare, equal, sexp, sexp_grammar]
include Ppx_compare_lib.Comparable.S1 with type 'a t := 'a t
include Ppx_compare_lib.Equal.S1 with type 'a t := 'a t
include Sexplib0.Sexpable.S1 with type 'a t := 'a t
val t_sexp_grammar : 'a Sexplib0.Sexp_grammar.t -> 'a t Sexplib0.Sexp_grammar.t
[@@@end]
end)
type 'a t = 'a ref = { mutable contents : 'a }
external create : 'a -> 'a t = "%makemutable"
external ( ! ) : 'a t -> 'a = "%field0"
external ( := ) : 'a t -> 'a -> unit = "%setfield0"
let swap t1 t2 =
let tmp = !t1 in
t1 := !t2;
t2 := tmp
;;
let replace t f = t := f !t
let set_temporarily t a ~f =
let restore_to = !t in
t := a;
Exn.protect ~f ~finally:(fun () -> t := restore_to)
;;
module And_value = struct
type t = T : 'a ref * 'a -> t [@@deriving sexp_of]
let set (T (r, a)) = r := a
let sets ts = List.iter ts ~f:set
let snapshot (T (r, _)) = T (r, !r)
let snapshots ts = List.map ts ~f:snapshot
end
let sets_temporarily and_values ~f =
let restore_to = And_value.snapshots and_values in
And_value.sets and_values;
Exn.protect ~f ~finally:(fun () -> And_value.sets restore_to)
;;