Skip to content

Commit c76d3cf

Browse files
v0.18~preview.130.05+548
1 parent fc5f4d5 commit c76d3cf

31 files changed

+1620
-1254
lines changed

composition_infix/README.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

composition_infix/src/composition_infix.ml

Lines changed: 0 additions & 2 deletions
This file was deleted.

composition_infix/src/composition_infix.mli

Lines changed: 0 additions & 7 deletions
This file was deleted.

composition_infix/src/dune

Lines changed: 0 additions & 6 deletions
This file was deleted.

core_kernel.opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ depends: [
2020
"ppx_optcomp"
2121
"ppx_stable_witness"
2222
"sexplib"
23+
"univ_map"
2324
"uopt"
2425
"base-threads"
2526
"dune" {>= "3.11.0"}

enum/src/dune

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
(public_name core_kernel.enum)
44
(preprocess
55
(pps ppx_jane))
6-
(libraries base core.command parsexp core.univ_map))
6+
(libraries base core.command parsexp univ_map))

flags/src/flags_intf.ml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ module type S = sig
3535
(** bitwise not *)
3636
val complement : t -> t
3737

38-
val is_empty : t -> bool
39-
val do_intersect : t -> t -> bool
40-
val are_disjoint : t -> t -> bool
38+
val is_empty : t -> bool [@@zero_alloc]
39+
val do_intersect : t -> t -> bool [@@zero_alloc]
40+
val are_disjoint : t -> t -> bool [@@zero_alloc]
4141

4242
(** [is_subset t ~of_] is [t = intersect t of_] *)
4343
val is_subset : t -> of_:t -> bool

0 commit comments

Comments
 (0)