|
definition: |
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: |
no demanded arguments |
|
deterministic: |
deterministic operation |
|
documentation: |
Show strictness information of all functions a little bit formatted: |
|
failfree: |
_ |
|
indeterministic: |
referentially transparent operation |
|
infix: |
no fixity defined |
|
iotype: |
{(_) |-> _}
|
|
name: |
showStrictness |
|
precedence: |
no precedence defined |
|
result-values: |
_ |
|
signature: |
[(String, [Prelude.Int])] -> String |
|
solution-complete: |
operation might suspend on free variables |
|
terminating: |
possibly non-terminating |
|
totally-defined: |
possibly non-reducible on same data term |