definition:
|
checkLetDeclarations :: Int -> [Decl a] -> Bool
checkLetDeclarations p (dcl:dcls@(_:_)) =
(p == getCol (getSpanInfo dcl)) && checkLetDeclarations (getCol (getSpanInfo dcl)) dcls
checkLetDeclarations p [dcl] = (p == getCol (getSpanInfo dcl))
checkLetDeclarations _ [] = True
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Returns true if list of declarations are aligned with inputed position of first decl.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{:}) |-> _ || (_,{[]}) |-> {True}}
|
name:
|
checkLetDeclarations
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Int -> [Curry.Types.Decl a] -> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|