definition:
|
showDemand :: AOutFormat -> DemandedArgs -> String
showDemand AText [] = "no demanded arguments"
showDemand ANote [] = ""
showDemand fmt (x:xs) =
(if fmt==AText then "demanded arguments: " else "") ++
intercalate "," (map show (x:xs))
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Show determinism information as a string.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({AText},{[]}) |-> {:} || ({ANote},{[]}) |-> {[]} || (_,{:}) |-> _}
|
name:
|
showDemand
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Analysis.Types.AOutFormat -> [Prelude.Int] -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|