From c33477c39773fec9644cd4369cb8d95656f152bb Mon Sep 17 00:00:00 2001 From: Fardale Date: Fri, 12 Nov 2021 17:38:37 +0100 Subject: [PATCH] chore: remove unwanted comment --- src/core/CCArray.mli | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/core/CCArray.mli b/src/core/CCArray.mli index cfdf448b..99590017 100644 --- a/src/core/CCArray.mli +++ b/src/core/CCArray.mli @@ -178,12 +178,6 @@ val random_choose : 'a t -> 'a random_gen (** [random_choose a rs] randomly chooses an element of [a]. @raise Not_found if the array/slice is empty. *) -(*val of_list_map : ('a -> 'b) -> 'a list -> 'b t/*) -(** [of_list_map f l] applies the function [f] to all the elements of the list [l] - and builds an array with the results returned by [f]. The result is equivalent to - [map f (Array.of_list l)]. - @since NEXT_RELEASE *) - val to_string : ?sep:string -> ('a -> string) -> 'a array -> string (** [to_string ~sep item_to_string a] print [a] to a string using [sep] as a separator between elements of [a].