CurryInfo: call-analysis-3.2.0 / Analysis.showCTerm

definition: Info
 
showCTerm :: CTerm -> String
showCTerm CBot = "_"
showCTerm (CVar i) = 'x' : show i
showCTerm (CCons f []) = f
showCTerm (CCons f args@(_:_)) =
  f ++ "(" ++ intercalate "," (map showCTerm args) ++ ")"
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
show a constructor term
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({CBot}) |-> {:} || ({CVar}) |-> {:} || ({CCons}) |-> _}
name: Info
 showCTerm
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 CTerm -> String
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term