final class EitherBiFlatMapAggregate[ColR[x] <: IterableOnce[x], T] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- EitherBiFlatMapAggregate
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new EitherBiFlatMapAggregate(col: ColR[T])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def biFlatTraverse[ColL[_], L, A](f: (T) => Either[ColL[L], IterableOnce[A]])(implicit buildR: Factory[A, ColR[A]], buildL: Factory[L, ColL[L]], iterL: (ColL[L]) => IterableOnce[L]): Either[ColL[L], ColR[A]]
flatTraverse
with error accumulation - def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def toString(): String
- Definition Classes
- Any
Deprecated Value Members
- def biFlatMapAggregate[ColL[_], L, A](f: (T) => Either[ColL[L], IterableOnce[A]])(implicit buildR: Factory[A, ColR[A]], buildL: Factory[L, ColL[L]], iterL: (ColL[L]) => IterableOnce[L]): Either[ColL[L], ColR[A]]
- Annotations
- @deprecated
- Deprecated
use .biFlatTraverse
- def biFlatMapAggregateTo[ColL[_], L, A, CC](f: (T) => Either[ColL[L], IterableOnce[A]])(buildRR: Factory[A, CC])(implicit iterL: (ColL[L]) => IterableOnce[L], buildL: Factory[L, ColL[L]], buildR: Factory[A, ColR[A]]): Either[ColL[L], CC]
- Annotations
- @deprecated
- Deprecated
use .biFlatTraverse(f).to(...)