definition:
|
commands :: Mod -> [(String, ArgProps, a, ParseSpec a)] -> [Parser a]
commands (Mod _ a) cmds = [CmdP (a defaultArgProps) cmds]
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Create a command parser.
---
--- @param m modifiers for this command
--- @param cs command sub-parsers, created by `command`
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({Mod},_) |-> {:}}
|
name:
|
commands
|
precedence:
|
no precedence defined
|
result-values:
|
{:}
|
signature:
|
Mod -> [(String, ArgProps, a, ParseSpec a)] -> [Parser a]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|