CurryInfo: cass-analysis-4.0.0 / Analysis.Groundness.showGround

definition:
showGround :: AOutFormat -> Ground -> String
showGround ANote G      = "G"
showGround AText G      = "always ground result"
showGround ANote A      = "A"
showGround AText A      = "possibly non-ground result"
showGround ANote (P ps) = show ps
showGround AText (P ps) =
  "ground if argument" ++
  (if length ps == 1 then ' ' : show (head ps) ++ " is ground"
                     else "s " ++ show ps ++ " are ground")
demand:
arguments 1 2
deterministic:
deterministic operation
documentation:
-- Show groundness information as a string.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({ANote},{G}) |-> {:} || ({ANote},{A}) |-> {:} || ({ANote},{P}) |-> _ || ({AText},{G}) |-> {:} || ({AText},{A}) |-> {:} || ({AText},{P}) |-> _}
name:
showGround
precedence:
no precedence defined
result-values:
_
signature:
Analysis.Types.AOutFormat -> Ground -> String
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term