definition:
|
showDependencies :: ResolutionResult -> String
showDependencies (ResolutionSuccess pkg deps) =
showTree . mapTree (text . packageId) $ dependencyTree deps pkg
showDependencies (ResolutionFailure _) = "Resolution failed."
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Renders a dependency tree from a successful resolution.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({ResolutionSuccess}) |-> _ || ({ResolutionFailure}) |-> {:}}
|
name:
|
showDependencies
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
ResolutionResult -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|