Uses of Class
org.fife.rsta.ac.js.ecma.api.ecma5.JS5Function
-
Packages that use JS5Function Package Description org.fife.rsta.ac.js.ecma.api.ecma5 org.fife.rsta.ac.js.ecma.api.ecma5.functions -
-
Uses of JS5Function in org.fife.rsta.ac.js.ecma.api.ecma5
Methods in org.fife.rsta.ac.js.ecma.api.ecma5 with parameters of type JS5Function Modifier and Type Method Description static JS5ObjectJS5JSON. parse(JS5String s, JS5Function reviver)function parse(s, reviver) parse a JSON-formatted string.static JS5ObjectJS5JSON. stringify(JS5Object o, JS5Function filter, JS5Object indent)function stringify(o, filter, indent) serialize an object, array or primitive value. -
Uses of JS5Function in org.fife.rsta.ac.js.ecma.api.ecma5.functions
Methods in org.fife.rsta.ac.js.ecma.api.ecma5.functions that return JS5Function Modifier and Type Method Description JS5FunctionJS5FunctionFunctions. bind(JS5Object thisObject, JS5Array argArray)function bind (thisObject, argArray) return a function that invokes this as a method.Methods in org.fife.rsta.ac.js.ecma.api.ecma5.functions with parameters of type JS5Function Modifier and Type Method Description JSBooleanJS5ArrayFunctions. every(JS5Function predicate, JS5Object o)function every(predicate, o) test whether predicate is true for every element.JS5ArrayJS5ArrayFunctions. filter(JS5Function predicate, JS5Object o)function filter(predicate, o) return array elements that pass a predicate.voidJS5ArrayFunctions. forEach(JS5Function f, JS5Object o)function forEach(f, o) invoke a function for each array element.JS5ArrayJS5ArrayFunctions. map(JS5Function f, JS5Object o)function map(f, o) compute new array elements from old.JS5ObjectJS5ArrayFunctions. reduce(JS5Function f, JS5Object initial)function reduce(f, initial) compute a value from the elements of an array.JS5ObjectJS5ArrayFunctions. reduceRight(JS5Function f, JS5Object initial)function reduceRight(f, initial) reduce an array from right-to-left.JSBooleanJS5ArrayFunctions. some(JS5Function predicate, JS5Object o)function some(predicate, o) test whether a predicate is true for any element.
-