X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..HEAD:/docs/output/Ext.Array.js diff --git a/docs/output/Ext.Array.js b/docs/output/Ext.Array.js index 74c0ca1f..119ace85 100644 --- a/docs/output/Ext.Array.js +++ b/docs/output/Ext.Array.js @@ -1,1190 +1 @@ -Ext.data.JsonP.Ext_Array({ - "allMixins": [ - - ], - "deprecated": null, - "docauthor": "Jacky Nguyen ", - "members": { - "cfg": [ - - ], - "method": [ - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-clean", - "shortDoc": "Filter through an array and remove empty item as defined in Ext.isEmpty\n\nSee filter ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "array" - } - ], - "name": "clean", - "owner": "Ext.Array", - "doc": "

Filter through an array and remove empty item as defined in Ext.isEmpty

\n\n

See filter

\n", - "linenr": 495, - "return": { - "type": "Array", - "doc": "

results

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-clone", - "shortDoc": "Clone a flat array without referencing the previous one. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The array

\n", - "name": "array" - } - ], - "name": "clone", - "owner": "Ext.Array", - "doc": "

Clone a flat array without referencing the previous one. Note that this is different\nfrom Ext.clone since it doesn't handle recursive cloning. It's simply a convenient, easy-to-remember method\nfor Array.prototype.slice.call(array)

\n", - "linenr": 628, - "return": { - "type": "Array", - "doc": "

The clone array

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-contains", - "shortDoc": "Checks whether or not the given array contains the specified item ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The array to check

\n", - "name": "array" - }, - { - "type": "Mixed", - "optional": false, - "doc": "

The item to look for

\n", - "name": "item" - } - ], - "name": "contains", - "owner": "Ext.Array", - "doc": "

Checks whether or not the given array contains the specified item

\n", - "linenr": 311, - "return": { - "type": "Boolean", - "doc": "

True if the array contains the item, false otherwise

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-difference", - "shortDoc": "Perform a set difference A-B by subtracting all items in array B from array A. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "arrayA" - }, - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "arrayB" - } - ], - "name": "difference", - "owner": "Ext.Array", - "doc": "

Perform a set difference A-B by subtracting all items in array B from array A.

\n", - "linenr": 713, - "return": { - "type": "Array", - "doc": "

difference

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-each", - "shortDoc": "Iterates an array or an iterable value and invoke the given callback function for each item. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array/NodeList/Mixed", - "optional": false, - "doc": "

The value to be iterated. If this\nargument is not iterable, the callback function is called once.

\n", - "name": "iterable" - }, - { - "type": "Function", - "optional": false, - "doc": "

The callback function. If it returns false, the iteration stops and this method returns\nthe current index. Arguments passed to this callback function are:

\n\n\n\n", - "name": "fn" - }, - { - "type": "Object", - "optional": false, - "doc": "

(Optional) The scope (this reference) in which the specified function is executed.

\n", - "name": "scope" - }, - { - "type": "Boolean", - "optional": false, - "doc": "

(Optional) Reverse the iteration order (loop from the end to the beginning)\nDefaults false

\n", - "name": "reverse" - } - ], - "name": "each", - "owner": "Ext.Array", - "doc": "

Iterates an array or an iterable value and invoke the given callback function for each item.

\n\n
var countries = ['Vietnam', 'Singapore', 'United States', 'Russia'];\n\nExt.Array.each(countries, function(name, index, countriesItSelf) {\n    console.log(name);\n});\n\nvar sum = function() {\n    var sum = 0;\n\n    Ext.Array.each(arguments, function(value) {\n        sum += value;\n    });\n\n    return sum;\n};\n\nsum(1, 2, 3); // returns 6\n
\n\n

The iteration can be stopped by returning false in the function callback.

\n\n
Ext.Array.each(countries, function(name, index, countriesItSelf) {\n    if (name === 'Singapore') {\n        return false; // break here\n    }\n});\n
\n\n

Ext.each is alias for Ext.Array.each

\n", - "linenr": 188, - "return": { - "type": "Boolean", - "doc": "

See description for the fn parameter.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-erase", - "shortDoc": "Removes items from an array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The Array on which to replace.

\n", - "name": "array" - }, - { - "type": "Number", - "optional": false, - "doc": "

The index in the array at which to operate.

\n", - "name": "index" - }, - { - "type": "Number", - "optional": false, - "doc": "

The number of items to remove at index.

\n", - "name": "removeCount" - } - ], - "name": "erase", - "owner": "Ext.Array", - "doc": "

Removes items from an array. This is functionally equivalent to the splice method\nof Array, but works around bugs in IE8's splice method and does not copy the\nremoved elements in order to return them (because very often they are ignored).

\n", - "linenr": 920, - "return": { - "type": "Array", - "doc": "

The array passed.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-every", - "shortDoc": "Executes the specified function for each array element until the function returns a falsy value. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "array" - }, - { - "type": "Function", - "optional": false, - "doc": "

Callback function for each item

\n", - "name": "fn" - }, - { - "type": "Object", - "optional": false, - "doc": "

Callback function scope

\n", - "name": "scope" - } - ], - "name": "every", - "owner": "Ext.Array", - "doc": "

Executes the specified function for each array element until the function returns a falsy value.\nIf such an item is found, the function will return false immediately.\nOtherwise, it will return true.

\n", - "linenr": 432, - "return": { - "type": "Boolean", - "doc": "

True if no false value is returned by the callback function.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-filter", - "shortDoc": "Creates a new array with all of the elements of this array for which\nthe provided filtering function returns true. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "array" - }, - { - "type": "Function", - "optional": false, - "doc": "

Callback function for each item

\n", - "name": "fn" - }, - { - "type": "Object", - "optional": false, - "doc": "

Callback function scope

\n", - "name": "scope" - } - ], - "name": "filter", - "owner": "Ext.Array", - "doc": "

Creates a new array with all of the elements of this array for which\nthe provided filtering function returns true.

\n", - "linenr": 543, - "return": { - "type": "Array", - "doc": "

results

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-flatten", - "shortDoc": "Recursively flattens into 1-d Array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "array" - } - ], - "name": "flatten", - "owner": "Ext.Array", - "doc": "

Recursively flattens into 1-d Array. Injects Arrays inline.

\n", - "linenr": 800, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-forEach", - "shortDoc": "Iterates an array and invoke the given callback function for each item. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The array to iterate

\n", - "name": "array" - }, - { - "type": "Function", - "optional": false, - "doc": "

The function callback, to be invoked these arguments:

\n\n\n\n", - "name": "fn" - }, - { - "type": "Object", - "optional": false, - "doc": "

(Optional) The execution scope (this) in which the specified function is executed.

\n", - "name": "scope" - } - ], - "name": "forEach", - "owner": "Ext.Array", - "doc": "

Iterates an array and invoke the given callback function for each item. Note that this will simply\ndelegate to the native Array.prototype.forEach method if supported.\nIt doesn't support stopping the iteration by returning false in the callback function like\neach. However, performance could be much better in modern browsers comparing with\neach

\n", - "linenr": 257, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-from", - "shortDoc": "Converts a value to an array if it's not already an array; returns:\n\n\nAn empty array if given value is undefined or n...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array/Mixed", - "optional": false, - "doc": "

The value to convert to an array if it's not already is an array

\n", - "name": "value" - }, - { - "type": "Boolean", - "optional": false, - "doc": "

(Optional) newReference True to clone the given array and return a new reference if necessary,\ndefaults to false

\n", - "name": "newReference" - } - ], - "name": "from", - "owner": "Ext.Array", - "doc": "

Converts a value to an array if it's not already an array; returns:

\n\n\n\n", - "linenr": 570, - "return": { - "type": "Array", - "doc": "

array

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-include", - "shortDoc": "Push an item into the array only if the array doesn't contain it yet ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The array

\n", - "name": "array" - }, - { - "type": "Mixed", - "optional": false, - "doc": "

The item to include

\n", - "name": "item" - } - ], - "name": "include", - "owner": "Ext.Array", - "doc": "

Push an item into the array only if the array doesn't contain it yet

\n", - "linenr": 616, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-indexOf", - "shortDoc": "Get the index of the provided item in the given array, a supplement for the\nmissing arrayPrototype.indexOf in Interne...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The array to check

\n", - "name": "array" - }, - { - "type": "Mixed", - "optional": false, - "doc": "

The item to look for

\n", - "name": "item" - }, - { - "type": "Number", - "optional": false, - "doc": "

(Optional) The index at which to begin the search

\n", - "name": "from" - } - ], - "name": "indexOf", - "owner": "Ext.Array", - "doc": "

Get the index of the provided item in the given array, a supplement for the\nmissing arrayPrototype.indexOf in Internet Explorer.

\n", - "linenr": 286, - "return": { - "type": "Number", - "doc": "

The index of item in the array (or -1 if it is not found)

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-insert", - "shortDoc": "Inserts items in to an array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The Array on which to replace.

\n", - "name": "array" - }, - { - "type": "Number", - "optional": false, - "doc": "

The index in the array at which to operate.

\n", - "name": "index" - }, - { - "type": "Array", - "optional": false, - "doc": "

The array of items to insert at index.

\n", - "name": "items" - } - ], - "name": "insert", - "owner": "Ext.Array", - "doc": "

Inserts items in to an array.

\n", - "linenr": 933, - "return": { - "type": "Array", - "doc": "

The array passed.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-intersect", - "shortDoc": "Merge multiple arrays into one with unique items that exist in all of the arrays. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "array1" - }, - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "array2" - }, - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "etc" - } - ], - "name": "intersect", - "owner": "Ext.Array", - "doc": "

Merge multiple arrays into one with unique items that exist in all of the arrays.

\n", - "linenr": 662, - "return": { - "type": "Array", - "doc": "

intersect

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-map", - "shortDoc": "Creates a new array with the results of calling a provided function on every element in this array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "array" - }, - { - "type": "Function", - "optional": false, - "doc": "

Callback function for each item

\n", - "name": "fn" - }, - { - "type": "Object", - "optional": false, - "doc": "

Callback function scope

\n", - "name": "scope" - } - ], - "name": "map", - "owner": "Ext.Array", - "doc": "

Creates a new array with the results of calling a provided function on every element in this array.

\n", - "linenr": 408, - "return": { - "type": "Array", - "doc": "

results

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-max", - "shortDoc": "Returns the maximum value in the Array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array|NodeList", - "optional": false, - "doc": "

The Array from which to select the maximum value.

\n", - "name": "array" - }, - { - "type": "Function", - "optional": true, - "doc": "

(optional) a function to perform the comparision which determines maximization.\nIf omitted the \">\" operator will be used. Note: gt = 1; eq = 0; lt = -1

\n", - "name": "comparisonFn" - } - ], - "name": "max", - "owner": "Ext.Array", - "doc": "

Returns the maximum value in the Array.

\n", - "linenr": 856, - "return": { - "type": "Mixed", - "doc": "

maxValue The maximum value

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-mean", - "shortDoc": "Calculates the mean of all items in the array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The Array to calculate the mean value of.

\n", - "name": "array" - } - ], - "name": "mean", - "owner": "Ext.Array", - "doc": "

Calculates the mean of all items in the array.

\n", - "linenr": 886, - "return": { - "type": "Number", - "doc": "

The mean.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-merge", - "shortDoc": "Merge multiple arrays into one with unique items. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "array1" - }, - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "array2" - }, - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "etc" - } - ], - "name": "merge", - "owner": "Ext.Array", - "doc": "

Merge multiple arrays into one with unique items.

\n\n

union is alias for merge

\n", - "linenr": 640, - "return": { - "type": "Array", - "doc": "

merged

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-min", - "shortDoc": "Returns the minimum value in the Array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array|NodeList", - "optional": false, - "doc": "

The Array from which to select the minimum value.

\n", - "name": "array" - }, - { - "type": "Function", - "optional": true, - "doc": "

(optional) a function to perform the comparision which determines minimization.\nIf omitted the \"<\" operator will be used. Note: gt = 1; eq = 0; lt = -1

\n", - "name": "comparisonFn" - } - ], - "name": "min", - "owner": "Ext.Array", - "doc": "

Returns the minimum value in the Array.

\n", - "linenr": 826, - "return": { - "type": "Mixed", - "doc": "

minValue The minimum value

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-pluck", - "shortDoc": "Plucks the value of a property from each item in the Array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array|NodeList", - "optional": false, - "doc": "

The Array of items to pluck the value from.

\n", - "name": "array" - }, - { - "type": "String", - "optional": false, - "doc": "

The property name to pluck from each element.

\n", - "name": "propertyName" - } - ], - "name": "pluck", - "owner": "Ext.Array", - "doc": "

Plucks the value of a property from each item in the Array. Example:

\n\n
Ext.Array.pluck(Ext.query(\"p\"), \"className\"); // [el1.className, el2.className, ..., elN.className]\n
\n", - "linenr": 386, - "return": { - "type": "Array", - "doc": "

The value from each item in the Array.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-remove", - "shortDoc": "Removes the specified item from the array if it exists ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The array

\n", - "name": "array" - }, - { - "type": "Mixed", - "optional": false, - "doc": "

The item to remove

\n", - "name": "item" - } - ], - "name": "remove", - "owner": "Ext.Array", - "doc": "

Removes the specified item from the array if it exists

\n", - "linenr": 599, - "return": { - "type": "Array", - "doc": "

The passed array itself

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-replace", - "shortDoc": "Replaces items in an array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The Array on which to replace.

\n", - "name": "array" - }, - { - "type": "Number", - "optional": false, - "doc": "

The index in the array at which to operate.

\n", - "name": "index" - }, - { - "type": "Number", - "optional": false, - "doc": "

The number of items to remove at index (can be 0).

\n", - "name": "removeCount" - }, - { - "type": "Array", - "optional": false, - "doc": "

An optional array of items to insert at index.

\n", - "name": "insert" - } - ], - "name": "replace", - "owner": "Ext.Array", - "doc": "

Replaces items in an array. This is functionally equivalent to the splice method\nof Array, but works around bugs in IE8's splice method and is often more convenient\nto call because it accepts an array of items to insert rather than use a variadic\nargument list.

\n", - "linenr": 945, - "return": { - "type": "Array", - "doc": "

The array passed.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-slice", - "shortDoc": "Returns a shallow copy of a part of an array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The array (or arguments object).

\n", - "name": "array" - }, - { - "type": "Number", - "optional": false, - "doc": "

The index at which to begin. Negative values are offsets from\nthe end of the array.

\n", - "name": "begin" - }, - { - "type": "Number", - "optional": false, - "doc": "

The index at which to end. The copied items do not include\nend. Negative values are offsets from the end of the array. If end is omitted,\nall items up to the end of the array are copied.

\n", - "name": "end" - } - ], - "name": "slice", - "owner": "Ext.Array", - "doc": "

Returns a shallow copy of a part of an array. This is equivalent to the native\ncall \"Array.prototype.slice.call(array, begin, end)\". This is often used when \"array\"\nis \"arguments\" since the arguments object does not supply a slice method but can\nbe the context object to Array.prototype.slice.

\n", - "linenr": 738, - "return": { - "type": "Array", - "doc": "

The copied piece of the array.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-some", - "shortDoc": "Executes the specified function for each array element until the function returns a truthy value. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "array" - }, - { - "type": "Function", - "optional": false, - "doc": "

Callback function for each item

\n", - "name": "fn" - }, - { - "type": "Object", - "optional": false, - "doc": "

Callback function scope

\n", - "name": "scope" - } - ], - "name": "some", - "owner": "Ext.Array", - "doc": "

Executes the specified function for each array element until the function returns a truthy value.\nIf such an item is found, the function will return true immediately. Otherwise, it will return false.

\n", - "linenr": 464, - "return": { - "type": "Boolean", - "doc": "

True if the callback function returns a truthy value.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-sort", - "shortDoc": "Sorts the elements of an Array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The array to sort.

\n", - "name": "array" - }, - { - "type": "Function", - "optional": true, - "doc": "

(optional) The comparison function.

\n", - "name": "sortFn" - } - ], - "name": "sort", - "owner": "Ext.Array", - "doc": "

Sorts the elements of an Array.\nBy default, this method sorts the elements alphabetically and ascending.

\n", - "linenr": 756, - "return": { - "type": "Array", - "doc": "

The sorted array.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-splice", - "shortDoc": "Replaces items in an array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The Array on which to replace.

\n", - "name": "array" - }, - { - "type": "Number", - "optional": false, - "doc": "

The index in the array at which to operate.

\n", - "name": "index" - }, - { - "type": "Number", - "optional": false, - "doc": "

The number of items to remove at index (can be 0).

\n", - "name": "removeCount" - } - ], - "name": "splice", - "owner": "Ext.Array", - "doc": "

Replaces items in an array. This is equivalent to the splice method of Array, but\nworks around bugs in IE8's splice method. The signature is exactly the same as the\nsplice method except that the array is the first argument. All arguments following\nremoveCount are inserted in the array at index.

\n", - "linenr": 960, - "return": { - "type": "Array", - "doc": "

An array containing the removed items.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-sum", - "shortDoc": "Calculates the sum of all items in the given array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The Array to calculate the sum value of.

\n", - "name": "array" - } - ], - "name": "sum", - "owner": "Ext.Array", - "doc": "

Calculates the sum of all items in the given array.

\n", - "linenr": 896, - "return": { - "type": "Number", - "doc": "

The sum.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-toArray", - "shortDoc": "Converts any iterable (numeric indices and a length property) into a true array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

the iterable object to be turned into a true Array.

\n", - "name": "iterable" - }, - { - "type": "Number", - "optional": false, - "doc": "

(Optional) a zero-based index that specifies the start of extraction. Defaults to 0

\n", - "name": "start" - }, - { - "type": "Number", - "optional": false, - "doc": "

(Optional) a zero-based index that specifies the end of extraction. Defaults to the last\nindex of the iterable value

\n", - "name": "end" - } - ], - "name": "toArray", - "owner": "Ext.Array", - "doc": "

Converts any iterable (numeric indices and a length property) into a true array.

\n\n
function test() {\n    var args = Ext.Array.toArray(arguments),\n        fromSecondToLastArgs = Ext.Array.toArray(arguments, 1);\n\n    alert(args.join(' '));\n    alert(fromSecondToLastArgs.join(' '));\n}\n\ntest('just', 'testing', 'here'); // alerts 'just testing here';\n                                 // alerts 'testing here';\n\nExt.Array.toArray(document.getElementsByTagName('div')); // will convert the NodeList into an array\nExt.Array.toArray('splitted'); // returns ['s', 'p', 'l', 'i', 't', 't', 'e', 'd']\nExt.Array.toArray('splitted', 0, 3); // returns ['s', 'p', 'l', 'i']\n
\n\n

Ext.toArray is alias for Ext.Array.toArray

\n", - "linenr": 334, - "return": { - "type": "Array", - "doc": "

array

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.Array", - "doc": null, - "owner": "merge" - }, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-union", - "shortDoc": "Merge multiple arrays into one with unique items. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "array1" - }, - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "array2" - }, - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "etc" - } - ], - "name": "union", - "owner": "Ext.Array", - "doc": "

Merge multiple arrays into one with unique items.

\n\n

union is alias for merge

\n", - "linenr": 982, - "return": { - "type": "Array", - "doc": "

merged

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-Array-method-unique", - "shortDoc": "Returns a new array with unique items ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "array" - } - ], - "name": "unique", - "owner": "Ext.Array", - "doc": "

Returns a new array with unique items

\n", - "linenr": 520, - "return": { - "type": "Array", - "doc": "

results

\n" - }, - "html_filename": "Array2.html" - } - ], - "property": [ - - ], - "cssVar": [ - - ], - "cssMixin": [ - - ], - "event": [ - - ] - }, - "singleton": true, - "alias": null, - "superclasses": [ - - ], - "protected": false, - "tagname": "class", - "mixins": [ - - ], - "href": "Array2.html#Ext-Array", - "subclasses": [ - - ], - "static": false, - "author": "Jacky Nguyen ", - "component": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "alternateClassNames": [ - - ], - "name": "Ext.Array", - "doc": "

A set of useful static methods to deal with arrays; provide missing methods for older browsers.

\n", - "mixedInto": [ - - ], - "linenr": 1, - "xtypes": [ - - ], - "html_filename": "Array2.html", - "extends": null -}); \ No newline at end of file +Ext.data.JsonP.Ext_Array({"tagname":"class","html":"

Files

A set of useful static methods to deal with arrays; provide missing methods for older browsers.

\n
Defined By

Properties

Returns a shallow copy of a part of an array. ...

Returns a shallow copy of a part of an array. This is equivalent to the native\ncall \"Array.prototype.slice.call(array, begin, end)\". This is often used when \"array\"\nis \"arguments\" since the arguments object does not supply a slice method but can\nbe the context object to Array.prototype.slice.

\n
Defined By

Methods

Filter through an array and remove empty item as defined in Ext.isEmpty\n\nSee filter ...

Filter through an array and remove empty item as defined in Ext.isEmpty

\n\n

See filter

\n

Parameters

Returns

Clone a flat array without referencing the previous one. ...

Clone a flat array without referencing the previous one. Note that this is different\nfrom Ext.clone since it doesn't handle recursive cloning. It's simply a convenient, easy-to-remember method\nfor Array.prototype.slice.call(array)

\n

Parameters

Returns

Checks whether or not the given array contains the specified item ...

Checks whether or not the given array contains the specified item

\n

Parameters

  • array : Array

    The array to check

    \n
  • item : Object

    The item to look for

    \n

Returns

  • Boolean

    True if the array contains the item, false otherwise

    \n
Perform a set difference A-B by subtracting all items in array B from array A. ...

Perform a set difference A-B by subtracting all items in array B from array A.

\n

Parameters

Returns

( Array/NodeList/Object iterable, Function fn, [Object scope], [Boolean reverse] ) : Boolean
Iterates an array or an iterable value and invoke the given callback function for each item. ...

Iterates an array or an iterable value and invoke the given callback function for each item.

\n\n
var countries = ['Vietnam', 'Singapore', 'United States', 'Russia'];\n\nExt.Array.each(countries, function(name, index, countriesItSelf) {\n    console.log(name);\n});\n\nvar sum = function() {\n    var sum = 0;\n\n    Ext.Array.each(arguments, function(value) {\n        sum += value;\n    });\n\n    return sum;\n};\n\nsum(1, 2, 3); // returns 6\n
\n\n

The iteration can be stopped by returning false in the function callback.

\n\n
Ext.Array.each(countries, function(name, index, countriesItSelf) {\n    if (name === 'Singapore') {\n        return false; // break here\n    }\n});\n
\n\n

Ext.each is alias for Ext.Array.each

\n

Parameters

  • iterable : Array/NodeList/Object

    The value to be iterated. If this\nargument is not iterable, the callback function is called once.

    \n
  • fn : Function

    The callback function. If it returns false, the iteration stops and this method returns\nthe current index.

    \n

    Parameters

    • item : Object

      The item at the current index in the passed array

      \n
    • index : Number

      The current index within the array

      \n
    • allItems : Array

      The array itself which was passed as the first argument

      \n

    Returns

    • Boolean

      Return false to stop iteration.

      \n
  • scope : Object (optional)

    The scope (this reference) in which the specified function is executed.

    \n
  • reverse : Boolean (optional)

    Reverse the iteration order (loop from the end to the beginning)\nDefaults false

    \n

Returns

  • Boolean

    See description for the fn parameter.

    \n
( Array array, Number index, Number removeCount ) : Array
Removes items from an array. ...

Removes items from an array. This is functionally equivalent to the splice method\nof Array, but works around bugs in IE8's splice method and does not copy the\nremoved elements in order to return them (because very often they are ignored).

\n

Parameters

  • array : Array

    The Array on which to replace.

    \n
  • index : Number

    The index in the array at which to operate.

    \n
  • removeCount : Number

    The number of items to remove at index.

    \n

Returns

Executes the specified function for each array element until the function returns a falsy value. ...

Executes the specified function for each array element until the function returns a falsy value.\nIf such an item is found, the function will return false immediately.\nOtherwise, it will return true.

\n

Parameters

  • array : Array
    \n
  • fn : Function

    Callback function for each item

    \n
  • scope : Object

    Callback function scope

    \n

Returns

  • Boolean

    True if no false value is returned by the callback function.

    \n
Creates a new array with all of the elements of this array for which\nthe provided filtering function returns true. ...

Creates a new array with all of the elements of this array for which\nthe provided filtering function returns true.

\n

Parameters

  • array : Array
    \n
  • fn : Function

    Callback function for each item

    \n
  • scope : Object

    Callback function scope

    \n

Returns

Recursively flattens into 1-d Array. ...

Recursively flattens into 1-d Array. Injects Arrays inline.

\n

Parameters

  • array : Array

    The array to flatten

    \n

Returns

Iterates an array and invoke the given callback function for each item. ...

Iterates an array and invoke the given callback function for each item. Note that this will simply\ndelegate to the native Array.prototype.forEach method if supported. It doesn't support stopping the\niteration by returning false in the callback function like each. However, performance\ncould be much better in modern browsers comparing with each

\n

Parameters

  • array : Array

    The array to iterate

    \n
  • fn : Function

    The callback function.

    \n

    Parameters

    • item : Object

      The item at the current index in the passed array

      \n
    • index : Number

      The current index within the array

      \n
    • allItems : Array

      The array itself which was passed as the first argument

      \n
  • scope : Object (optional)

    The execution scope (this) in which the specified function is executed.

    \n
( Object value, [Boolean newReference] ) : Array
Converts a value to an array if it's not already an array; returns:\n\n\nAn empty array if given value is undefined or n...

Converts a value to an array if it's not already an array; returns:

\n\n
    \n
  • An empty array if given value is undefined or null
  • \n
  • Itself if given value is already an array
  • \n
  • An array copy if given value is iterable (arguments, NodeList and alike)
  • \n
  • An array with one item which is the given value, otherwise
  • \n
\n\n

Parameters

  • value : Object

    The value to convert to an array if it's not already is an array

    \n
  • newReference : Boolean (optional)

    True to clone the given array and return a new reference if necessary,\ndefaults to false

    \n

Returns

Push an item into the array only if the array doesn't contain it yet ...

Push an item into the array only if the array doesn't contain it yet

\n

Parameters

  • array : Array

    The array

    \n
  • item : Object

    The item to include

    \n
Get the index of the provided item in the given array, a supplement for the\nmissing arrayPrototype.indexOf in Interne...

Get the index of the provided item in the given array, a supplement for the\nmissing arrayPrototype.indexOf in Internet Explorer.

\n

Parameters

  • array : Array

    The array to check

    \n
  • item : Object

    The item to look for

    \n
  • from : Number (optional)

    The index at which to begin the search

    \n

Returns

  • Number

    The index of item in the array (or -1 if it is not found)

    \n
Inserts items in to an array. ...

Inserts items in to an array.

\n

Parameters

  • array : Array

    The Array on which to replace.

    \n
  • index : Number

    The index in the array at which to operate.

    \n
  • items : Array

    The array of items to insert at index.

    \n

Returns

Merge multiple arrays into one with unique items that exist in all of the arrays. ...

Merge multiple arrays into one with unique items that exist in all of the arrays.

\n

Parameters

Returns

Creates a new array with the results of calling a provided function on every element in this array. ...

Creates a new array with the results of calling a provided function on every element in this array.

\n

Parameters

  • array : Array
    \n
  • fn : Function

    Callback function for each item

    \n
  • scope : Object

    Callback function scope

    \n

Returns

( Array/NodeList array, [Function comparisonFn] ) : Object
Returns the maximum value in the Array. ...

Returns the maximum value in the Array.

\n

Parameters

  • array : Array/NodeList

    The Array from which to select the maximum value.

    \n
  • comparisonFn : Function (optional)

    a function to perform the comparision which determines maximization.\nIf omitted the \">\" operator will be used. Note: gt = 1; eq = 0; lt = -1

    \n

Returns

  • Object

    maxValue The maximum value

    \n
Calculates the mean of all items in the array. ...

Calculates the mean of all items in the array.

\n

Parameters

  • array : Array

    The Array to calculate the mean value of.

    \n

Returns

Merge multiple arrays into one with unique items. ...

Merge multiple arrays into one with unique items.

\n\n

union is alias for merge

\n

Parameters

Returns

( Array/NodeList array, [Function comparisonFn] ) : Object
Returns the minimum value in the Array. ...

Returns the minimum value in the Array.

\n

Parameters

  • array : Array/NodeList

    The Array from which to select the minimum value.

    \n
  • comparisonFn : Function (optional)

    a function to perform the comparision which determines minimization.\nIf omitted the \"<\" operator will be used. Note: gt = 1; eq = 0; lt = -1

    \n

Returns

  • Object

    minValue The minimum value

    \n
( Array/NodeList array, String propertyName ) : Array
Plucks the value of a property from each item in the Array. ...

Plucks the value of a property from each item in the Array. Example:

\n\n
Ext.Array.pluck(Ext.query(\"p\"), \"className\"); // [el1.className, el2.className, ..., elN.className]\n
\n

Parameters

  • array : Array/NodeList

    The Array of items to pluck the value from.

    \n
  • propertyName : String

    The property name to pluck from each element.

    \n

Returns

  • Array

    The value from each item in the Array.

    \n
Removes the specified item from the array if it exists ...

Removes the specified item from the array if it exists

\n

Parameters

  • array : Array

    The array

    \n
  • item : Object

    The item to remove

    \n

Returns

  • Array

    The passed array itself

    \n
( Array array, Number index, Number removeCount, [Array insert] ) : Array
Replaces items in an array. ...

Replaces items in an array. This is functionally equivalent to the splice method\nof Array, but works around bugs in IE8's splice method and is often more convenient\nto call because it accepts an array of items to insert rather than use a variadic\nargument list.

\n

Parameters

  • array : Array

    The Array on which to replace.

    \n
  • index : Number

    The index in the array at which to operate.

    \n
  • removeCount : Number

    The number of items to remove at index (can be 0).

    \n
  • insert : Array (optional)

    An array of items to insert at index.

    \n

Returns

Executes the specified function for each array element until the function returns a truthy value. ...

Executes the specified function for each array element until the function returns a truthy value.\nIf such an item is found, the function will return true immediately. Otherwise, it will return false.

\n

Parameters

  • array : Array
    \n
  • fn : Function

    Callback function for each item

    \n
  • scope : Object

    Callback function scope

    \n

Returns

  • Boolean

    True if the callback function returns a truthy value.

    \n
Sorts the elements of an Array. ...

Sorts the elements of an Array.\nBy default, this method sorts the elements alphabetically and ascending.

\n

Parameters

  • array : Array

    The array to sort.

    \n
  • sortFn : Function (optional)

    The comparison function.

    \n

Returns

( Array array, Number index, Number removeCount ) : Array
Replaces items in an array. ...

Replaces items in an array. This is equivalent to the splice method of Array, but\nworks around bugs in IE8's splice method. The signature is exactly the same as the\nsplice method except that the array is the first argument. All arguments following\nremoveCount are inserted in the array at index.

\n

Parameters

  • array : Array

    The Array on which to replace.

    \n
  • index : Number

    The index in the array at which to operate.

    \n
  • removeCount : Number

    The number of items to remove at index (can be 0).

    \n

Returns

  • Array

    An array containing the removed items.

    \n
Calculates the sum of all items in the given array. ...

Calculates the sum of all items in the given array.

\n

Parameters

  • array : Array

    The Array to calculate the sum value of.

    \n

Returns

( Object iterable, [Number start], [Number end] ) : Array
Converts any iterable (numeric indices and a length property) into a true array. ...

Converts any iterable (numeric indices and a length property) into a true array.

\n\n
function test() {\n    var args = Ext.Array.toArray(arguments),\n        fromSecondToLastArgs = Ext.Array.toArray(arguments, 1);\n\n    alert(args.join(' '));\n    alert(fromSecondToLastArgs.join(' '));\n}\n\ntest('just', 'testing', 'here'); // alerts 'just testing here';\n                                 // alerts 'testing here';\n\nExt.Array.toArray(document.getElementsByTagName('div')); // will convert the NodeList into an array\nExt.Array.toArray('splitted'); // returns ['s', 'p', 'l', 'i', 't', 't', 'e', 'd']\nExt.Array.toArray('splitted', 0, 3); // returns ['s', 'p', 'l', 'i']\n
\n\n

Ext.toArray is alias for Ext.Array.toArray

\n

Parameters

  • iterable : Object

    the iterable object to be turned into a true Array.

    \n
  • start : Number (optional)

    a zero-based index that specifies the start of extraction. Defaults to 0

    \n
  • end : Number (optional)

    a zero-based index that specifies the end of extraction. Defaults to the last\nindex of the iterable value

    \n

Returns

Merge multiple arrays into one with unique items. ...

Merge multiple arrays into one with unique items.

\n\n

union is alias for merge

\n

Parameters

Returns

Returns a new array with unique items ...

Returns a new array with unique items

\n

Parameters

Returns

","allMixins":[],"meta":{"author":["Jacky Nguyen "],"docauthor":["Jacky Nguyen "]},"requires":[],"deprecated":null,"extends":null,"inheritable":false,"static":false,"superclasses":[],"singleton":true,"code_type":"nop","alias":null,"statics":{"property":[],"css_var":[],"css_mixin":[],"cfg":[],"method":[],"event":[]},"subclasses":[],"uses":[],"protected":false,"mixins":[],"members":{"property":[{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.Array","template":null,"required":null,"protected":false,"name":"slice","id":"property-slice"}],"css_var":[],"css_mixin":[],"cfg":[],"method":[{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"clean","id":"method-clean"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"clone","id":"method-clone"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"contains","id":"method-contains"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"difference","id":"method-difference"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"each","id":"method-each"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"erase","id":"method-erase"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"every","id":"method-every"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"filter","id":"method-filter"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"flatten","id":"method-flatten"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"forEach","id":"method-forEach"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"from","id":"method-from"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"include","id":"method-include"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"indexOf","id":"method-indexOf"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"insert","id":"method-insert"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"intersect","id":"method-intersect"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"map","id":"method-map"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"max","id":"method-max"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"mean","id":"method-mean"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"merge","id":"method-merge"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"min","id":"method-min"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"pluck","id":"method-pluck"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"remove","id":"method-remove"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"replace","id":"method-replace"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"some","id":"method-some"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"sort","id":"method-sort"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"splice","id":"method-splice"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"sum","id":"method-sum"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"toArray","id":"method-toArray"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"union","id":"method-union"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Array","template":false,"required":null,"protected":false,"name":"unique","id":"method-unique"}],"event":[]},"private":false,"component":false,"name":"Ext.Array","alternateClassNames":[],"id":"class-Ext.Array","mixedInto":[],"xtypes":{},"files":[{"href":"Array3.html#Ext-Array","filename":"Array.js"}]}); \ No newline at end of file