Creates a curried version of this function.
Creates a curried version of this function.
a function f
such that f(x1)(x2)(x3)(x4)(x5)(x6)(x7)(x8)(x9)(x10)(x11) == apply(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11)
Creates a String representation of this object.
Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.
a String representation of the object.
Creates a tupled version of this function: instead of 11 arguments, it accepts a single Tuple11 argument.
Creates a tupled version of this function: instead of 11 arguments, it accepts a single Tuple11 argument.
a function f
such that f((x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11)) == f(Tuple11(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11)) == apply(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11)
(Since version 2.8.0) Use 'curried' instead
A function of 11 parameters.