CurryInfo: cpm-3.3.0 / CPM.Options.>.>

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