definition:
|
guardsEqualSSameLine :: [CondExpr a] -> Bool
guardsEqualSSameLine (cExpr:cExprs) =
(getLi (getSpanInfo cExpr) == (getEqualLi (getSpanInfo cExpr))) || guardsEqualSSameLine cExprs
guardsEqualSSameLine [] = True
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Checks if one equal sign continues in the same line as its guard.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({:}) |-> _ || ({[]}) |-> {True}}
|
name:
|
guardsEqualSSameLine
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[Curry.Types.CondExpr a] -> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|