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 : ('-> bool) -> 'a list -> int
  val exists_unique : ('-> bool) -> 'a list -> bool
  val remove_sorted_duplicates : ('-> '-> int) -> 'a list -> 'a list
  val iter_pairwise : ('-> '-> unit) -> 'a list -> unit
  val find_index : ('-> bool) -> 'a list -> int
  val pp_print_list :
    (Format.formatter -> '-> unit) ->
    (Format.formatter -> unit -> unit) -> Format.formatter -> 'a list -> unit
end

Hosted by the SourceForge.net Logo* web site.
*Other names and brands may be claimed as the property of others.