EitherFunction

Tuple of functions, which takes an Either.

  1. class EitherFunction(A, B, C)
  2. auto eitherFunction(F f, G g)

Constructors

this
this(Function!(A, C) f, Function!(B, C) g)
Undocumented in source.

Members

Functions

opCall
C opCall(Either!(A, B) x)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

f
Function!(A, C) f;
Undocumented in source.
g
Function!(B, C) g;
Undocumented in source.

Meta