Function7
scala.Function7
A function of 7 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)(x4)(x5)(x6)(x7) == apply(x1, x2, x3, x4, x5, x6, x7)
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 7 arguments, it accepts a single scala.Tuple7 argument.
Creates a tupled version of this function: instead of 7 arguments, it accepts a single scala.Tuple7 argument.
Attributes
- Returns
-
a function
fsuch thatf((x1, x2, x3, x4, x5, x6, x7)) == f(Tuple7(x1, x2, x3, x4, x5, x6, x7)) == apply(x1, x2, x3, x4, x5, x6, x7)
In this article