CurryInfo: dimacs-3.0.0 / Dimacs.Scanner.scanNum

definition:
scanNum :: String -> [Token]
scanNum cs =
  let v = readInt cs
  in case v of
       [(num, rest)] -> VarNum num : scan rest
       _             -> error "should not be possible"
demand:
argument 1
deterministic:
deterministic operation
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> {:}}
name:
scanNum
precedence:
no precedence defined
result-values:
{:}
signature:
String -> [Token]
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term