arrow-core / arrow.core.extensions / ValidatedBifoldable
interface ~~ValidatedBifoldable~~ : Bifoldable<ForValidated>
Deprecated: BiFoldable typeclass is deprecated and will be removed in 0.13.0. Use concrete methods on Validated.
| bifoldLeft | open fun <A, B, C> ValidatedOf<A, B>.bifoldLeft(c: C, f: (C, A) -> C, g: (C, B) -> C): C | 
    
| bifoldRight | open fun <A, B, C> ValidatedOf<A, B>.bifoldRight(c: Eval<C>, f: (A, Eval<C>) -> Eval<C>, g: (B, Eval<C>) -> Eval<C>): Eval<C> | 
    
| ValidatedBitraverse | interface ~~ValidatedBitraverse~~ : Bitraverse<ForValidated>, ValidatedBifoldable | 
    
Do you like Arrow?
✖