CurryInfo: det-parse-3.0.0 / DetParse.*>

definition:
(*>) :: Parser a -> Parser b -> Parser b
p *> q = (\_ y -> y) <$> p <*> q
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Builds a parser that applies both parsers in order and returns the result of
--- the second one.
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
infixl
iotype:
{(_,_) |-> {<*>._#lambda10}}
name:
*>
precedence:
4
result-values:
{<*>._#lambda10}
signature:
(String -> [(a, String)]) -> (String -> [(b, String)]) -> String
-> [(b, String)]
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms