fix(CCMultiMap): Integrate suggested changes to doc comment for find_left

Co-authored-by: Simon Cruanes <simon.cruanes.2007@m4x.org>
This commit is contained in:
BridgeTheMasterBuilder 2023-08-03 21:39:18 +00:00 committed by GitHub
parent e0fb678d1e
commit 85cf52d5ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -225,7 +225,8 @@ module type BIDIR = sig
(** Is the right key present in at least one pair? *)
val find_left : t -> left -> right list
(** List of values for this given left-key *)
(** List of values for this given left-key.
This used to return an iter, but returns a list since NEXT_RELEASE. *)
val find_left_iter : t -> left -> right iter
(** Iterate on bindings for this given left-key