Combiner

Companion:
class
class Object
trait Matchable
class Any

Type members

Types

type WithOut[L, R, Out0] = Combiner[L, R] { type Out = Out0; }

Implicits

Implicits

implicit def leftUnit[A]: WithOut[Unit, A, A]

Inherited implicits

implicit def combine[A, B]: WithOut[A, B, (A, B)]
Inherited from:
CombinerLowPriority4
implicit def combine2[A, B, C]: WithOut[(A, B), C, (A, B, C)]
Inherited from:
CombinerLowPriority2
implicit def combine3[A, B, C, D]: WithOut[(A, B, C), D, (A, B, C, D)]
Inherited from:
CombinerLowPriority3
implicit def combine4[A, B, C, D, E]: WithOut[(A, B, C, D), E, (A, B, C, D, E)]
Inherited from:
CombinerLowPriority3
implicit def combine5[A, B, C, D, E, F]: WithOut[(A, B, C, D, E), F, (A, B, C, D, E, F)]
Inherited from:
CombinerLowPriority3
implicit def rightUnit[A]: WithOut[A, Unit, A]
Inherited from:
CombinerLowPriority1