definition:
|
isProperty :: CFuncDecl -> Bool
isProperty = isPropertyType . typeOfQualType . funcType
where
isPropertyType ct = isPropIOType ct || isPropType (resultType ct)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
------------------------------------------------------------------------
--- Check whether a function definition is a property,
--- i.e., if the result type is `Prop` or `PropIO`.
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {.._#lambda508}}
|
name:
|
isProperty
|
precedence:
|
no precedence defined
|
result-values:
|
{.._#lambda508}
|
signature:
|
AbstractCurry.Types.CFuncDecl -> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|