definition:
|
match :: Ord c => Reg (Int, c) CaptureGroups -> [c] -> Bool
match r s = let l = capture r s
in if l == []
then False
else if (snd $ head l) == []
then False
else (head $ snd $ head l) == s
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Match with capture groups.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
match
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Ord a => Reg (Prelude.Int, a) CaptureGroups -> [a] -> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|