dataflow-0.4.2.0: Generate Graphviz documents from a Haskell representation.

Safe HaskellSafe-Inferred
LanguageHaskell2010

DataFlow.DFD

Synopsis

Documentation

type DFDState v = State (Map (ID, ID) Bool) v Source

class RenderDFD t where Source

Type class for types that can be rendered as DFD.

Methods

dfd :: t -> DFDRenderer () Source

evalDfd :: Diagram -> String Source

Generates the DFD output as a String.

printDfd :: Diagram -> IO () Source

Prints the DFD output to stdout.