Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
module Data.Graph.Inductive.
NodeMap Utility methods to automatically generate and keep track of a mapping between node labels and Nodes.
-
fgl Data.Graph.Inductive.NodeMap No documentation available.
type
NodeMapM a b (g :: Type -> Type -> Type) r = State (NodeMap a, g a b) rfgl Data.Graph.Inductive.NodeMap Graph construction monad; handles passing both the NodeMap and the Graph.
delMapEdge :: (Ord a, DynGraph g) => NodeMap a -> (a, a) -> g a b -> g a bfgl Data.Graph.Inductive.NodeMap Partial function: raises exception if passed nodes that are not in the graph.
delMapEdgeM :: (Ord a, DynGraph g) => (a, a) -> NodeMapM a b g ()fgl Data.Graph.Inductive.NodeMap No documentation available.
delMapEdges :: (Ord a, DynGraph g) => NodeMap a -> [(a, a)] -> g a b -> g a bfgl Data.Graph.Inductive.NodeMap Partial function: raises exception if passed nodes that are not in the graph.
delMapEdgesM :: (Ord a, DynGraph g) => [(a, a)] -> NodeMapM a b g ()fgl Data.Graph.Inductive.NodeMap No documentation available.
delMapNode :: (Ord a, DynGraph g) => NodeMap a -> a -> g a b -> g a bfgl Data.Graph.Inductive.NodeMap No documentation available.
delMapNodeM :: (Ord a, DynGraph g) => a -> NodeMapM a b g ()fgl Data.Graph.Inductive.NodeMap No documentation available.
delMapNodes :: (Ord a, DynGraph g) => NodeMap a -> [a] -> g a b -> g a bfgl Data.Graph.Inductive.NodeMap No documentation available.