definition:
|
showRootCyclic :: AOutFormat -> Bool -> String
showRootCyclic AText False = "no cycles at the root"
showRootCyclic ANote False = ""
showRootCyclic AText True = "possible cyclic root replacement"
showRootCyclic ANote True = "root-cyclic"
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
documentation:
|
------------------------------------------------------------------------------
-- Show root-cyclic information as a string.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({AText},{False}) |-> {:} || ({AText},{True}) |-> {:} || ({ANote},{False}) |-> {[]} || ({ANote},{True}) |-> {:}}
|
name:
|
showRootCyclic
|
precedence:
|
no precedence defined
|
result-values:
|
{:,[]}
|
signature:
|
Analysis.Types.AOutFormat -> Prelude.Bool -> String
|
solution-complete:
|
operationally complete operation
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|