definition:
|
showResult :: ResolutionResult -> String
showResult r@(ResolutionSuccess _ _) = showDependencies r
showResult r@(ResolutionFailure _) = showConflict r
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Renders a resolution result into a textual representation for the user.
--- In case of success, the dependency tree is shown. In case of failure,
--- information on the cause of the conflict is shown.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({ResolutionSuccess}) |-> _ || ({ResolutionFailure}) |-> _}
|
name:
|
showResult
|
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
|