AbstractFunction3
scala.runtime.AbstractFunction3
abstract class AbstractFunction3[-T1, -T2, -T3, +R] extends (T1, T2, T3) => R
Attributes
- Graph
-
- Supertypes
Members list
Value members
Inherited methods
Creates a curried version of this function.
Creates a curried version of this function.
Attributes
- Returns
-
a function
fsuch thatf(x1)(x2)(x3) == apply(x1, x2, x3) - Inherited from:
- Function3
Creates a tupled version of this function: instead of 3 arguments, it accepts a single scala.Tuple3 argument.
Creates a tupled version of this function: instead of 3 arguments, it accepts a single scala.Tuple3 argument.
Attributes
- Returns
-
a function
fsuch thatf((x1, x2, x3)) == f(Tuple3(x1, x2, x3)) == apply(x1, x2, x3) - Inherited from:
- Function3
In this article