CurryInfo: opt-parse-3.0.0 / OptParse.parse

definition:
parse :: String -> ParseSpec a -> String -> Either String [a]
parse argv spec prog = case P.parse pArgs argv of
  Nothing -> Left $ parseError prog spec "Could not parse command line!"
  Just as -> parseArgs as spec prog
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Parses a command line via a parser spec.
---
--- @param l the command line
--- @param s the parser spec
--- @param p the name of the current program
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,_) |-> _}
name:
parse
precedence:
no precedence defined
result-values:
_
signature:
String -> ParseSpec a -> String -> Prelude.Either String [a]
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term