class CanBuild2[A1, A2] extends AnyRef
- Source
- Products.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CanBuild2
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new CanBuild2(m1: M[A1], m2: M[A2])
Value Members
- def and[A3](m3: M[A3]): CanBuild3[A1, A2, A3]
- def apply[B](f1: (A1, A2) => B, f2: (B) => (A1, A2))(implicit fu: InvariantFunctor[M]): M[B]
- def apply[B](f: (B) => (A1, A2))(implicit fu: ContravariantFunctor[M]): M[B]
- def apply[B](f: (A1, A2) => B)(implicit fu: Functor[M]): M[B]
- def join[A >: A1](implicit witness1: <:<[A, A1], witness2: <:<[A, A2], fu: ContravariantFunctor[M]): M[A]
- def reduce[A >: A1, B](implicit witness1: <:<[A1, A], witness2: <:<[A2, A], fu: Functor[M], reducer: Reducer[A, B]): M[B]
- def tupled(implicit v: VariantExtractor[M]): M[(A1, A2)]
- def ~[A3](m3: M[A3]): CanBuild3[A1, A2, A3]