definition: |
showGraph :: (Show a, Show b) => Graph a b -> String showGraph (Gr g) = unlines (map showNode (toList g)) where showNode (v,(_,l',s)) = show v ++ ":" ++ show l' ++ "->"++ show s |
demand: |
argument 3 |
deterministic: |
deterministic operation |
documentation: |
--- Represent Graph as String |
failfree: |
(_, _, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,{Gr}) |-> _} |
name: |
showGraph |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
(Prelude.Show a, Prelude.Show b) => Graph a b -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |