package stdune

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type nonrec 'a t = 'a list t
val rev_union : 'a t -> 'a t -> 'a t
val cons : 'a t -> key -> 'a -> 'a t
val find : 'a t -> key -> 'a list
val add_all : 'a t -> key -> 'a list -> 'a t
val find_elt : 'a t -> f:('a -> bool) -> (key * 'a) option

find_elt m ~f linearly traverses the map m and the contained lists to find the first element e (in a list l, mapped to key k) such that f e = true. If such an e is found then the function returns Some (k,e), otherwise it returns None.