definition:
|
showShortResult :: ResolutionResult -> String
showShortResult r@(ResolutionSuccess _ _) = showShortDependencies r
showShortResult r@(ResolutionFailure _) = showConflict r
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Renders a resolution result into a short textual representation
--- (where already shown packages are not shown again) for the user.
--- In case of success, the shortened 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:
|
showShortResult
|
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
|