final class EitherBiMapAggregate[ColR[x] <: IterableOnce[x], T] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- EitherBiMapAggregate
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new EitherBiMapAggregate(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 biTraverse[ColL[_], L, A](f: (T) => Either[ColL[L], A])(implicit buildR: Factory[A, ColR[A]], buildL: Factory[L, ColL[L]], iterL: (ColL[L]) => IterableOnce[L]): Either[ColL[L], ColR[A]]
traverse
with error accumulation - def biTraverse_[ColL[_], L](f: (T) => Either[ColL[L], Unit])(implicit buildL: Factory[L, ColL[L]], iterL: (ColL[L]) => IterableOnce[L]): Either[ColL[L], Unit]
traverse_
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 biMapAggregate[ColL[_], L, A](f: (T) => Either[ColL[L], 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 .biTraverse
- def biMapAggregateTo[ColL[_], L, A, CC](f: (T) => Either[ColL[L], 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 .biTraverse(f).to(...)
- def biMapAggregateVoid[ColL[_], L](f: (T) => Either[ColL[L], Unit])(implicit buildL: Factory[L, ColL[L]], iterL: (ColL[L]) => IterableOnce[L]): Either[ColL[L], Unit]
- Annotations
- @deprecated
- Deprecated
use .biTraverse_