sig
module Hashed_list :
functor (H : Hashtbl.HashedType) ->
sig
type t = H.t list
val equal : t -> t -> bool
val hash : t -> int
end
val count : ('a -> bool) -> 'a list -> int
val exists_unique : ('a -> bool) -> 'a list -> bool
val remove_sorted_duplicates : ('a -> 'a -> int) -> 'a list -> 'a list
val iter_pairwise : ('a -> 'a -> unit) -> 'a list -> unit
val find_index : ('a -> bool) -> 'a list -> int
val pp_print_list :
(Format.formatter -> 'a -> unit) ->
(Format.formatter -> unit -> unit) -> Format.formatter -> 'a list -> unit
end
Hosted by the
* web site.
*Other names and brands may be claimed as the property
of others.