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

definition: Info
 
(<|>) :: Parser a -> Parser a -> Parser a
p <|> q = \s -> p s ++ q s
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Builds a parser that tries both its argument parsers and results in the
result of the first one to succeed.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 infixl
iotype: Info
 {(_,_) |-> {<|>._#lambda6}}
name: Info
 <|>
precedence: Info
 3
result-values: Info
 {<|>._#lambda6}
signature: Info
 (String -> [(a, String)]) -> (String -> [(a, String)]) -> String
-> [(a, String)]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms