Uses of Class
org.fife.rsta.ac.js.ecma.api.ecma5.JS5Function
Packages that use JS5Function
-
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 JS5FunctionModifier and TypeMethodDescriptionstatic 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 JS5FunctionModifier and TypeMethodDescriptionfunction 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 JS5FunctionModifier and TypeMethodDescriptionJS5ArrayFunctions.every(JS5Function predicate, JS5Object o) function every(predicate, o) test whether predicate is true for every element.JS5ArrayFunctions.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.JS5ArrayFunctions.map(JS5Function f, JS5Object o) function map(f, o) compute new array elements from old.JS5ArrayFunctions.reduce(JS5Function f, JS5Object initial) function reduce(f, initial) compute a value from the elements of an array.JS5ArrayFunctions.reduceRight(JS5Function f, JS5Object initial) function reduceRight(f, initial) reduce an array from right-to-left.JS5ArrayFunctions.some(JS5Function predicate, JS5Object o) function some(predicate, o) test whether a predicate is true for any element.