definition: |
capture :: Ord c => Reg (Int, c) CaptureGroups -> [c] -> [(Int, [[c]])] capture r s = case (matchEff r (zip [0.. ] s)) of CaptureGroups (Groups (l, _)) -> combine $ map (\(n, li) -> (n, (map (\(i, j) -> drop i (take (j Prelude.+ 1) s)) li))) l _ -> [] |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- The capture function is used to return capture groups efficient. --- @param r - The regular expression --- @param s - The input list --- @result l - The list with the capture groups and --- the respectively matching substrings |
failfree: |
(_, _, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> _} |
name: |
capture |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Prelude.Ord a => Reg (Prelude.Int, a) CaptureGroups -> [a] -> [(Prelude.Int, [[a]])] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |