definition:
|
rest :: (String -> a) -> Mod -> [Parser a]
rest f (Mod _ a) = [RestP (a defaultArgProps) f]
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Create an argument that consumes the rest of the command line.
---
--- @param f function that converts the parsed value into a parse result
--- @param m modifiers for this argument
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{Mod}) |-> {:}}
|
name:
|
rest
|
precedence:
|
no precedence defined
|
result-values:
|
{:}
|
signature:
|
(String -> a) -> Mod -> [Parser a]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|