Module Blocks.Make_Abstract
Parameters
Signature
include module type of struct include I end
type t = I.t = {edges : G.t; |
mutable size : int; |
}val iter_edges_e : ( G.edge -> unit ) -> t -> unitval fold_edges_e : ( G.edge -> 'a -> 'a ) -> t -> 'a -> 'aval create : ?size:int -> unit -> tval mem_edge_e : t -> G.edge -> boolval iter_vertex : ( G.vertex -> unit ) -> t -> unitval fold_vertex : ( G.vertex -> 'a -> 'a ) -> t -> 'a -> 'a