definition:
|
getCheckOpts :: IO Arguments
getCheckOpts = do
args <- getArgs
prog <- getProgName
(o,n) <- parseOpts args
return (prog, o, n)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Retrieves the program's name and commandline arguments,
-- parses and returns name, flags and further informations.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> _}
|
name:
|
getCheckOpts
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.IO (String, [Types.Flag], [String])
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|