definition:
|
isBeforeList :: Span -> [Span] -> Bool
isBeforeList _ [] = True
isBeforeList sp1 (sp2:_) = isBefore sp1 sp2
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- | Checks if the first span is completely
-- before the first span of a list.
-- Reurns `True` if the list is empty
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{[]}) |-> {True} || (_,{:}) |-> _}
|
name:
|
isBeforeList
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Span -> [Span] -> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|