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

definition: Info
 
(<*>) :: Parser (a -> b) -> Parser a -> Parser b
p <*> q = \s -> [ (f x, s2) | (f, s1) <- p s,
                              (x, s2) <- q s1 ]
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Applies the function returned by the first parser to the result of the
second parser. Applies the parsers in order.
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 -> b, String)]) -> (String -> [(a, 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