definition:
|
allResOps :: [(QName,ResiduationInfo)] -> [String]
allResOps resinfo =
map (snd . fst)
(filter (\ (_,i) -> i==MayResiduate || i==NoResInfo) resinfo)
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Returns the list of possibly residuating operations.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {:,[]}}
|
name:
|
allResOps
|
precedence:
|
no precedence defined
|
result-values:
|
{:,[]}
|
signature:
|
[((String, String), Analysis.Residuation.ResiduationInfo)] -> [String]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|