definition:
|
option :: (String -> a) -> Mod -> [Parser a]
option f (Mod o a) = [OptP (a defaultArgProps) (o defaultOptProps) f]
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Create an option.
---
--- @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:
|
option
|
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
|