Interface JS5FunctionFunctions
-
- All Superinterfaces:
JS5ObjectFunctions,JSFunctionFunctions,JSObjectFunctions
- All Known Implementing Classes:
JS5Function
public interface JS5FunctionFunctions extends JS5ObjectFunctions, JSFunctionFunctions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JS5Functionbind(JS5Object thisObject, JS5Array argArray)function bind (thisObject, argArray) return a function that invokes this as a method.-
Methods inherited from interface org.fife.rsta.ac.js.ecma.api.ecma3.functions.JSFunctionFunctions
apply, call
-
Methods inherited from interface org.fife.rsta.ac.js.ecma.api.ecma3.functions.JSObjectFunctions
hasOwnProperty, isPrototypeOf, propertyIsEnumerable, toLocaleString, toString, valueOf
-
-
-
-
Method Detail
-
bind
JS5Function bind(JS5Object thisObject, JS5Array argArray)
function bind (thisObject, argArray) return a function that invokes this as a method.- Parameters:
thisObject- The object to which the function should be bound.argArray- Zero or more argument values that will also be bound.- Since:
- Standard ECMA-262 5th. Edition, Level 2 Document Object Model Core Definition.
- See Also:
Function
-
-