scala.runtime

AbstractFunction2

class AbstractFunction2[-T1, -T2, +R] extends (T1, T2) ⇒ R

attributes: abstract

Inherits

  1. Function2
  2. AnyRef
  3. Any

Value Members

  1. def apply(v1: T1, v2: T2): R

  2. def curried: (T1) ⇒ (T2) ⇒ R

    f(x1, x2) == (f

  3. def curry: (T1) ⇒ (T2) ⇒ R

  4. def equals(arg0: Any): Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence

  5. def hashCode(): Int

    Returns a hash code value for the object

  6. def toString(): String

    Returns a string representation of the object

  7. def tupled: ((T1, T2)) ⇒ R

Instance constructors

  1. new AbstractFunction2()