CurryInfo: smtlib-3.0.0 / ParserComb.terminal

definition: Info
 
terminal :: (Eq tok, Show tok) => tok -> Parser tok ()
terminal tok = Parser $ \tokens -> case tokens of
  []               -> (runParser eof) []
  t:ts | tok == t  -> Right (ts, ())
       | otherwise -> (runParser (unexpected t)) ts
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_) |-> _}
name: Info
 terminal
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (Prelude.Eq a, Prelude.Show a) => a -> Parser a ()
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 possibly non-reducible on same data term