package ocamlgraph

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. edges : G.t;
  2. mutable size : int;
}
type vertex = G.vertex
type edge = G.edge
module PV = G.V
module PE = G.E
val iter_edges : (G.vertex -> G.vertex -> unit) -> t -> unit
val fold_edges : (G.vertex -> G.vertex -> 'a -> 'a) -> t -> 'a -> 'a
val iter_edges_e : (G.edge -> unit) -> t -> unit
val fold_edges_e : (G.edge -> 'a -> 'a) -> t -> 'a -> 'a
val mem_vertex : G.vertex -> t -> bool
val create : ?size:int -> unit -> t
val clear : t -> unit