definition:
|
checkPair :: Decl a -> [Decl a] -> CSM Bool
checkPair _ [] = return False
checkPair d (decl:decls) = case d of
fD@(FunctionDecl sIF _ (Ident _ s _) _) -> case decl of
(TypeSig sIT i _) -> if (s == getIdentS (head i))
then do checkPos sIF sIT s
return True
else checkPair fD decls
_ -> checkPair fD decls
_ -> return False
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Checks if Decl has a signature in the list of decls of module,
-- by goung through each declaration in module,
-- if so, returns true and checks the position.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{[]}) |-> _ || (_,{:}) |-> _}
|
name:
|
checkPair
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Curry.Types.Decl a -> [Curry.Types.Decl a]
-> Control.Monad.Trans.State.StateT Types.CheckState Data.Functor.Identity.Identity Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|