CurryInfo: dimacs-3.0.0 / Dimacs.Parser.parseVar

definition:
parseVar :: Parser Token Boolean
parseVar [] = eof []
parseVar (t:ts) = case t of
  VarNot   -> Not <$> parseVar $ ts
  VarNum i -> yield (Var i) ts
  _        -> unexpected t ts
demand:
argument 1
deterministic:
deterministic operation
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({[]}) |-> {Left} || ({:}) |-> _}
name:
parseVar
precedence:
no precedence defined
result-values:
_
signature:
[Dimacs.Scanner.Token]
-> Prelude.Either String ([Dimacs.Scanner.Token], Dimacs.Types.Boolean)
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term