mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -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 = `Right z], adds [z] to the second list.
|
||||
- if [f x = `Drop], ignores [x].
|
||||
@since 0.11 *)
|
||||
@since 3.3 *)
|
||||
|
||||
val partition_map : ('a -> [<`Left of 'b | `Right of 'c | `Drop]) ->
|
||||
'a list -> 'b list * 'c list
|
||||
[@@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) ->
|
||||
'a t -> 'a list t
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue