CurryInfo: call-analysis-3.2.0 / Analysis.showStrictness

definition: Info
 
showStrictness :: [(String,[Int])] -> String
showStrictness info =
  "Computed strictness information:\n"++
  unlines (map (\ (f,sargs) -> if null sargs
                                 then f ++ " not strict"
                                 else f ++ " strict at " ++
                                      intercalate "," (map show sargs))
               info)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Show strictness information of all functions a little bit formatted:
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_) |-> _}
name: Info
 showStrictness
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 [(String, [Prelude.Int])] -> 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