CurryInfo: dimacs-3.0.0 / Dimacs.Parser.parse

definition:
parse :: String -> Either ParseError [Boolean]
parse s = case parseDimacs $ scan s of
  Left e        -> Left e
  Right ([], x) -> Right x
  Right _       -> Left "incomplete parse"
demand:
no demanded arguments
deterministic:
deterministic operation
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> {Left,Right}}
name:
parse
precedence:
no precedence defined
result-values:
{Left,Right}
signature:
String -> Prelude.Either String [Dimacs.Types.Boolean]
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term