@@ -61,7 +61,7 @@ val for_ : ?chunk_size:int -> int -> (int -> int -> unit) -> unit
6161 Use [~chunk_size:1] if you explicitly want to
6262 run each iteration of the loop in its own task.
6363
64- @since NEXT_RELEASE
64+ @since 0.3
6565 {b NOTE} this is only available on OCaml 5. *)
6666
6767val all_array : ?chunk_size : int -> (unit -> 'a ) array -> 'a array
@@ -71,7 +71,7 @@ val all_array : ?chunk_size:int -> (unit -> 'a) array -> 'a array
7171 @param chunk_size if equal to [n], groups items by [n] to be run in
7272 a single task. Default is [1].
7373
74- @since NEXT_RELEASE
74+ @since 0.3
7575 {b NOTE} this is only available on OCaml 5. *)
7676
7777val all_list : ?chunk_size : int -> (unit -> 'a ) list -> 'a list
@@ -80,7 +80,7 @@ val all_list : ?chunk_size:int -> (unit -> 'a) list -> 'a list
8080
8181 @param chunk_size if equal to [n], groups items by [n] to be run in
8282 a single task. Default is not specified.
83- This parameter is available since NEXT_RELEASE .
83+ This parameter is available since 0.3 .
8484
8585 @since 0.3
8686 {b NOTE} this is only available on OCaml 5. *)
@@ -91,19 +91,19 @@ val all_init : ?chunk_size:int -> int -> (int -> 'a) -> 'a list
9191
9292 @param chunk_size if equal to [n], groups items by [n] to be run in
9393 a single task. Default is not specified.
94- This parameter is available since NEXT_RELEASE .
94+ This parameter is available since 0.3 .
9595
9696 @since 0.3
9797 {b NOTE} this is only available on OCaml 5. *)
9898
9999val map_array : ?chunk_size : int -> ('a -> 'b ) -> 'a array -> 'b array
100100(* * [map_array f arr] is like [Array.map f arr], but runs in parallel.
101- @since NEXT_RELEASE
101+ @since 0.3
102102 {b NOTE} this is only available on OCaml 5. *)
103103
104104val map_list : ?chunk_size : int -> ('a -> 'b ) -> 'a list -> 'b list
105105(* * [map_list f l] is like [List.map f l], but runs in parallel.
106- @since NEXT_RELEASE
106+ @since 0.3
107107 {b NOTE} this is only available on OCaml 5. *)
108108
109109[@@@ endif]
0 commit comments