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

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