definition:
|
(>>>) :: (Data token, Data rep) => Parser token -> rep -> ParserRep rep token
parser >>> repexp = attach
where attach rep sentence | parser sentence =:= rest &> repexp =:= rep
= rest where rest free
|
demand:
|
no demanded arguments
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
--- Attaches a representation to a parser without representation.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
infixr
|
iotype:
|
{(_,_,_,_) |-> {>>>.attach.12}}
|
name:
|
>>>
|
precedence:
|
3
|
result-values:
|
{>>>.attach.12}
|
signature:
|
(Prelude.Data a, Prelude.Data b) => ([a] -> [a]) -> b -> b -> [a] -> [a]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|