arrow-core / arrow.core.extensions / EitherBifoldable
interface ~~EitherBifoldable~~ : Bifoldable<ForEither>
Deprecated: BiFoldable typeclass is deprecated and will be removed in 0.13.0. Use concrete methods on Either
| bifoldLeft | open fun <A, B, C> EitherOf<A, B>.bifoldLeft(c: C, f: (C, A) -> C, g: (C, B) -> C): C | 
    
| bifoldRight | open fun <A, B, C> EitherOf<A, B>.bifoldRight(c: Eval<C>, f: (A, Eval<C>) -> Eval<C>, g: (B, Eval<C>) -> Eval<C>): Eval<C> | 
    
| EitherBicrosswalk | interface ~~EitherBicrosswalk~~ : Bicrosswalk<ForEither>, EitherBifunctor, EitherBifoldable | 
    
| EitherBitraverse | interface ~~EitherBitraverse~~ : Bitraverse<ForEither>, EitherBifoldable | 
    
Do you like Arrow?
✖