summaryrefslogtreecommitdiff
path: root/stdlib/listLabels.mli
diff options
context:
space:
mode:
authorJohn Whitington <john@coherentgraphics.co.uk>2020-07-30 17:21:22 +0100
committerJohn Whitington <john@coherentgraphics.co.uk>2020-07-30 17:21:22 +0100
commit6e0557f6d72c3b6e10fbcad53212b5bc23407798 (patch)
tree189c1dec46e08a316fccac4beb94a89329d7fa97 /stdlib/listLabels.mli
parent0fbeee11be8f70ff50e15cf6029c2e98d25b7197 (diff)
downloadocaml-6e0557f6d72c3b6e10fbcad53212b5bc23407798.tar.gz
Labeled and unlabeled @sinces automatically
Diffstat (limited to 'stdlib/listLabels.mli')
-rw-r--r--stdlib/listLabels.mli6
1 files changed, 4 insertions, 2 deletions
diff --git a/stdlib/listLabels.mli b/stdlib/listLabels.mli
index 0ec966246e..df375c237c 100644
--- a/stdlib/listLabels.mli
+++ b/stdlib/listLabels.mli
@@ -67,7 +67,8 @@ val compare_length_with : 'a list -> len:int -> int
val cons : 'a -> 'a list -> 'a list
(** [cons x xs] is [x :: xs]
- @since 4.05.0 in labeled module or 4.03.0 in unlabeled
+ @since 4.05.0
+ @sinceunlabeled 4.03.0
*)
val hd : 'a list -> 'a
@@ -434,7 +435,8 @@ val fast_sort : cmp:('a -> 'a -> int) -> 'a list -> 'a list
val sort_uniq : cmp:('a -> 'a -> int) -> 'a list -> 'a list
(** Same as {!sort}, but also remove duplicates.
- @since 4.03.0 in labeled module or 4.02.0 in unlabeled module
+ @since 4.03.0
+ @sinceunlabeled 4.02.0
*)
val merge : cmp:('a -> 'a -> int) -> 'a list -> 'a list -> 'a list