package ocamlgraph

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Provide a mapping function from a mapping of vertices.

Parameters

module G_Src : V_SRC
module G_Dst : V_DST

Signature

val map : (G_Src.V.t -> G_Dst.vertex) -> G_Src.t -> G_Dst.t

map f g applies f to each vertex of g and so builds a new graph based on g

val filter_map : (G_Src.V.t -> G_Dst.vertex option) -> G_Src.t -> G_Dst.t

filter_map f g applies f to each vertex of g and so builds a new graph based on g; if None is returned by f the vertex is omitted in the new graph.