definition:
|
(<*>) :: Parser token (a -> b) -> Parser token a -> Parser token b
a <*> b = \ts -> case a ts of
Left e -> Left e
Right (ts', f) -> case b ts' of
Left e -> Left e
Right (ts2, x) -> Right (ts2, f x)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> {<*>._#lambda1}}
|
name:
|
<*>
|
precedence:
|
no precedence defined
|
result-values:
|
{<*>._#lambda1}
|
signature:
|
([a] -> Prelude.Either String ([a], b -> c)) -> ([a]
-> Prelude.Either String ([a], b)) -> [a] -> Prelude.Either String ([a], c)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|