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

definition: Info
 
(*>=) :: Parser a -> (a -> Parser b) -> Parser b
p *>= f = \s -> [ (y, s2) | (x, s1) <- p s,
                            (y, s2) <- (f x) s1 ]
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 infixl
iotype: Info
 {(_,_) |-> {*>=._#lambda21}}
name: Info
 *>=
precedence: Info
 1
result-values: Info
 {*>=._#lambda21}
signature: Info
 (String -> [(a, String)]) -> (a -> 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