Scala Library: scala.runtime.AbstractFunction2
scala.runtime.AbstractFunction2
abstract class AbstractFunction2[-T1, -T2, +R] extends (T1, T2) ⇒ R
Abstract Value Members From scala.Function2
abstract def apply(v1: T1, v2: T2): R
Apply the body of this function to the arguments.
- returns
- the result of function application.
- Definition Classes
- Function2
(defined at scala.Function2)
Concrete Value Members From scala.Function2
def curried: (T1) ⇒ (T2) ⇒ R
Creates a curried version of this function.
- returns
- a function
f
such thatf(x1)(x2) == apply(x1, x2)
- a function
- Definition Classes
- Function2
- Annotations
- @ unspecialized ()
(defined at scala.Function2)
def tupled: ((T1, T2)) ⇒ R
Creates a tupled version of this function: instead of 2 arguments, it accepts a single scala.Tuple2 argument.
- returns
- a function
f
such thatf((x1, x2)) == f(Tuple2(x1, x2)) == apply(x1, x2)
- a function
- Definition Classes
- Function2
- Annotations
- @ unspecialized ()
(defined at scala.Function2)
Instance Constructors From scala.runtime.AbstractFunction2
new AbstractFunction2()
(defined at scala.runtime.AbstractFunction2)
Full Source:
/* __ *\
** ________ ___ / / ___ Scala API **
** / __/ __// _ | / / / _ | (c) 2002-2013, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
// GENERATED CODE: DO NOT EDIT. See scala.Function0 for timestamp.
package scala.runtime
abstract class AbstractFunction2[@specialized(scala.Int, scala.Long, scala.Double) -T1, @specialized(scala.Int, scala.Long, scala.Double) -T2, @specialized(scala.Unit, scala.Boolean, scala.Int, scala.Float, scala.Long, scala.Double) +R] extends Function2[T1, T2, R] {
}
Interested in Scala?
I send out weekly, personalized emails with articles and conference talks.
Subscribe now.