Function3
scala.Function3
A function of 3 parameters.
Attributes
- Graph
-
- Supertypes
- Known subtypes
-
Members list
Value members
Concrete 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)
Returns a string representation of the object.
Returns a string representation of the object.
The default representation is platform dependent.
Attributes
- Returns
-
a string representation of the object.
- Definition Classes
-
Any
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)
In this article