When Function[body] or body& is applied to a set of arguments, (or ) is replaced by the first argument, by the second, and so on. is replaced by the function itself.
If there are more arguments supplied than #i in the function, the remaining arguments are ignored. »
stands for the sequence of all arguments supplied. »
Function has attribute HoldAll. The function body is evaluated only after the formal parameters have been replaced by arguments.
The named formal parameters in Function are treated as local, and are renamed when necessary to avoid confusion with actual arguments supplied to the function. »
Function constructs can be nested in any way. Each is treated as a scoping construct, with named inner variables being renamed if necessary. »
Function represents a pure function that is to be treated as having attributes for the purpose of evaluation. »