definition: |
command :: String -> Mod -> a -> [Parser a] -> [(String, ArgProps, a, ParseSpec a)] command n (Mod _ a) d ps = [(n, a defaultArgProps, d, ParseSpec ps)] |
demand: |
argument 2 |
deterministic: |
deterministic operation |
documentation: |
--- Create a sub-parser for a command. Must be used with `commands`. --- --- @param n the name of the command --- @param m modifiers for this command --- @param a the result of this parse --- @param ps parsers for the rest of the command line for this command |
failfree: |
(_, _, _, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,{Mod},_,_) |-> {:}} |
name: |
command |
precedence: |
no precedence defined |
result-values: |
{:} |
signature: |
String -> Mod -> a -> [Parser a] -> [(String, ArgProps, a, ParseSpec a)] |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |