definition:
|
preCondOperations :: [CFuncDecl] -> [QName]
preCondOperations fdecls =
map ((\ (mn,fn) -> (mn,fromPreCondName fn)) . funcName)
(funDeclsWith isPreCondName fdecls)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Get all operations with a defined precondition from a list of functions.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
preCondOperations
|
precedence:
|
no precedence defined
|
result-values:
|
{:,[]}
|
signature:
|
[AbstractCurry.Types.CFuncDecl] -> [(String, String)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|