ImmutableCombo

abstract class ImmutableCombo[V] extends Combo[V]
class Combo[V]
trait (V, V) => V
class Object
trait Matchable
class Any

Value members

Concrete methods

Inherited methods

def apply(v1: V, v2: V): V
Inherited from:
Function2
def curried: V => V => V
Inherited from:
Function2
def delayed(delay: Int): Combo[V]

Returns a delayed version of the combo. It is equivalent to applying cascade to the right combo.

Returns a delayed version of the combo. It is equivalent to applying cascade to the right combo.

Inherited from:
Combo
Source:
Combo.scala

It returns true if the combo is guaranteed to be idempotent, i.e., if x combo y = (x combo y) combo y. This may be used for optimization purposes.

It returns true if the combo is guaranteed to be idempotent, i.e., if x combo y = (x combo y) combo y. This may be used for optimization purposes.

Inherited from:
Combo
Source:
Combo.scala

It returns true if this is guaranteed to be the right combo (i.e., the one which always returns the second component: `x combo y = y). This may be used for optimization purposes.

It returns true if this is guaranteed to be the right combo (i.e., the one which always returns the second component: `x combo y = y). This may be used for optimization purposes.

Inherited from:
Combo
Source:
Combo.scala
override def toString(): String
Definition Classes
Function2 -> Any
Inherited from:
Function2
def tupled: ((V, V)) => V
Inherited from:
Function2