Copyright | (C) 2011 Edward Kmett |
---|---|
License | BSD-style (see the file LICENSE) |
Maintainer | Edward Kmett <[email protected]> |
Stability | experimental |
Portability | type families |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Data.Graph.Class.Bidirectional
Description
Documentation
class AdjacencyListGraph g => BidirectionalGraph (g :: Type -> Type) where Source #
Minimal complete definition
Methods
inEdges :: Vertex g -> g [Edge g] Source #
inDegree :: Vertex g -> g Int Source #
incidentEdges :: Vertex g -> g [Edge g] Source #