add @since for delete_all

This commit is contained in:
Fardale 2018-01-27 23:48:47 +01:00
parent dcd975ce85
commit 4e9eeb50e5

View file

@ -57,7 +57,8 @@ module type S = sig
val delete_all : (elt -> elt -> bool) -> elt -> t -> t
(** Delete value if it exist in the heap.
[delete_all eq x h], use [eq] to find all [x] in [h] and delete them *)
[delete_all eq x h], use [eq] to find all [x] in [h] and delete them
@since NEXT_RELEASE *)
val iter : (elt -> unit) -> t -> unit
(** Iterate on elements *)