definition:
|
applyEither :: [Options -> Either String Options] -> Options
-> Either String Options
applyEither [] z = Right z
applyEither (f:fs) z = case f z of
Left err -> Left err
Right z' -> applyEither fs z'
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({[]},_) |-> {Right} || ({:},_) |-> {Left,Right}}
|
name:
|
applyEither
|
precedence:
|
no precedence defined
|
result-values:
|
{Left,Right}
|
signature:
|
[Options -> Prelude.Either String Options] -> Options
-> Prelude.Either String Options
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|