definition:
|
mkGraph :: Show a => [LNode a] -> [LEdge b] -> Graph a b
mkGraph vs es = (insEdges es . insNodes vs) empty
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Create a 'Graph' from the list of 'LNode's and 'LEdge's.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
mkGraph
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Show a => [(Prelude.Int, a)] -> [(Prelude.Int, Prelude.Int, b)]
-> Graph a b
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|