aboutsummaryrefslogtreecommitdiffhomepage
path: root/clib/cArray.mli
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2018-04-12 17:59:35 +0200
committerGravatar Maxime Dénès <mail@maximedenes.fr>2018-04-12 17:59:35 +0200
commit32b142d297c3fb259d0977efdb267fdc7c99b1d7 (patch)
tree46dc062383d3442806e345a23cb61fa837dd8ba4 /clib/cArray.mli
parent485eb7958811ff627d9c50ec7a6ed36ed9416b97 (diff)
parent0ade32f84b28d2190360ec79520788142755b5b7 (diff)
Merge PR #6972: [api] Deprecate a couple of aliases that we missed.
Diffstat (limited to 'clib/cArray.mli')
-rw-r--r--clib/cArray.mli6
1 files changed, 3 insertions, 3 deletions
diff --git a/clib/cArray.mli b/clib/cArray.mli
index f4f60f8aa..9c2f521f4 100644
--- a/clib/cArray.mli
+++ b/clib/cArray.mli
@@ -114,14 +114,14 @@ sig
(** Same with two arrays, folding on the left *)
val fold_map : ('a -> 'b -> 'a * 'c) -> 'a -> 'b array -> 'a * 'c array
- (** @deprecated Same as [fold_left_map] *)
+ [@@ocaml.deprecated "Same as [fold_left_map]"]
val fold_map' : ('a -> 'c -> 'b * 'c) -> 'a array -> 'c -> 'b array * 'c
- (** @deprecated Same as [fold_right_map] *)
+ [@@ocaml.deprecated "Same as [fold_right_map]"]
val fold_map2' :
('a -> 'b -> 'c -> 'd * 'c) -> 'a array -> 'b array -> 'c -> 'd array * 'c
- (** @deprecated Same as [fold_right2_map] *)
+ [@@ocaml.deprecated "Same as [fold_right2_map]"]
val distinct : 'a array -> bool
(** Return [true] if every element of the array is unique (for default