fold<B> abstract method

B fold<B>(
  1. B ifLeft(
    1. L l
    ),
  2. B ifRight(
    1. R r
    )
)

Implementation

B fold<B>(B ifLeft(L l), B ifRight(R r));