definition:
|
grepShow :: Data a => RE a -> [a] -> [a]
grepShow r s | xs ++ sem r ++ _ =:= s = drop (length xs) s
where xs free
|
demand:
|
argument 3
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
--- The following operation extends the operation 'grep' to return
--- the substring which starts with the regular expression.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
grepShow
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Data a => RE a -> [a] -> [a]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|