CurryInfo: dimacs-3.0.0 / DetParser.some

definition:
some :: Parser token a -> Parser token [a]
some p = \ts -> case p ts of
  Left e -> Left e
  Right (ts', x) -> (x:) <$> star p $ ts'
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- A some combinator for parsers. The returned parser
--- repeats the argument parser at least once.
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> {some._#lambda13}}
name:
some
precedence:
no precedence defined
result-values:
{some._#lambda13}
signature:
([a] -> Prelude.Either String ([a], b)) -> [a]
-> Prelude.Either String ([a], [b])
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
reducible on all ground data terms