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

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

View file

@ -233,7 +233,8 @@ module type BIDIR = sig
@since NEXT_RELEASE *)
val find_right : t -> right -> left list
(** List of values for this given right-key *)
(** List of values for this given right-key.
This used to return an iter, but returns a list since NEXT_RELEASE. *)
val find_right_iter : t -> right -> left iter
(** Iterate on bindings for this given left-key