mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
doc: fix wrong @since
This commit is contained in:
parent
1167ffdb3c
commit
6ace6f71e0
1 changed files with 3 additions and 2 deletions
|
|
@ -244,12 +244,13 @@ val partition_filter_map : ('a -> [<`Left of 'b | `Right of 'c | `Drop]) ->
|
||||||
- if [f x = `Left y], adds [y] to the first list.
|
- if [f x = `Left y], adds [y] to the first list.
|
||||||
- if [f x = `Right z], adds [z] to the second list.
|
- if [f x = `Right z], adds [z] to the second list.
|
||||||
- if [f x = `Drop], ignores [x].
|
- if [f x = `Drop], ignores [x].
|
||||||
@since 0.11 *)
|
@since 3.3 *)
|
||||||
|
|
||||||
val partition_map : ('a -> [<`Left of 'b | `Right of 'c | `Drop]) ->
|
val partition_map : ('a -> [<`Left of 'b | `Right of 'c | `Drop]) ->
|
||||||
'a list -> 'b list * 'c list
|
'a list -> 'b list * 'c list
|
||||||
[@@ocaml.deprecated "use CCList.partition_filter_map instead"]
|
[@@ocaml.deprecated "use CCList.partition_filter_map instead"]
|
||||||
(** @deprecated use {!partition_filter_map} instead *)
|
(** @deprecated use {!partition_filter_map} instead
|
||||||
|
@since 0.11 *)
|
||||||
|
|
||||||
val group_by : ?hash:('a -> int) -> ?eq:('a -> 'a -> bool) ->
|
val group_by : ?hash:('a -> int) -> ?eq:('a -> 'a -> bool) ->
|
||||||
'a t -> 'a list t
|
'a t -> 'a list t
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue