| The constructor of the "Function" class |
| Declaration: |
| native function Function( object o, string f ) |
| Description: |
| The constructor of the "Function" class can either be called with the absolute name of a function (eg. "Console.println") or with an object and the name of a method within the object (eg. Console.stdout, "printf"). The specified function will be associated with the newly created "Function" object. |
| Parameters: |
| Parameter #1: object o - The object the function is a member of (optional) |
| Parameter #2: string f - The name of the function |