Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / output / Ext.Array.js
index 74c0ca1..119ace8 100644 (file)
@@ -1,1190 +1 @@
-Ext.data.JsonP.Ext_Array({
-  "allMixins": [
-
-  ],
-  "deprecated": null,
-  "docauthor": "Jacky Nguyen <jacky@sencha.com>",
-  "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": "<p>Filter through an array and remove empty item as defined in <a href=\"#/api/Ext-method-isEmpty\" rel=\"Ext-method-isEmpty\" class=\"docClass\">Ext.isEmpty</a></p>\n\n<p>See <a href=\"#/api/Ext.Array-method-filter\" rel=\"Ext.Array-method-filter\" class=\"docClass\">filter</a></p>\n",
-        "linenr": 495,
-        "return": {
-          "type": "Array",
-          "doc": "<p>results</p>\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": "<p>The array</p>\n",
-            "name": "array"
-          }
-        ],
-        "name": "clone",
-        "owner": "Ext.Array",
-        "doc": "<p>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)</p>\n",
-        "linenr": 628,
-        "return": {
-          "type": "Array",
-          "doc": "<p>The clone array</p>\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": "<p>The array to check</p>\n",
-            "name": "array"
-          },
-          {
-            "type": "Mixed",
-            "optional": false,
-            "doc": "<p>The item to look for</p>\n",
-            "name": "item"
-          }
-        ],
-        "name": "contains",
-        "owner": "Ext.Array",
-        "doc": "<p>Checks whether or not the given <code>array</code> contains the specified <code>item</code></p>\n",
-        "linenr": 311,
-        "return": {
-          "type": "Boolean",
-          "doc": "<p>True if the array contains the item, false otherwise</p>\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": "<p>Perform a set difference A-B by subtracting all items in array B from array A.</p>\n",
-        "linenr": 713,
-        "return": {
-          "type": "Array",
-          "doc": "<p>difference</p>\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": "<p>The value to be iterated. If this\nargument is not iterable, the callback function is called once.</p>\n",
-            "name": "iterable"
-          },
-          {
-            "type": "Function",
-            "optional": false,
-            "doc": "<p>The callback function. If it returns false, the iteration stops and this method returns\nthe current <code>index</code>. Arguments passed to this callback function are:</p>\n\n<ul>\n<li><code>item</code> : Mixed - The item at the current <code>index</code> in the passed <code>array</code></li>\n<li><code>index</code> : Number - The current <code>index</code> within the <code>array</code></li>\n<li><code>allItems</code> : Array/NodeList/Mixed - The <code>array</code> passed as the first argument to <code>Ext.Array.each</code></li>\n</ul>\n\n",
-            "name": "fn"
-          },
-          {
-            "type": "Object",
-            "optional": false,
-            "doc": "<p>(Optional) The scope (<code>this</code> reference) in which the specified function is executed.</p>\n",
-            "name": "scope"
-          },
-          {
-            "type": "Boolean",
-            "optional": false,
-            "doc": "<p>(Optional) Reverse the iteration order (loop from the end to the beginning)\nDefaults false</p>\n",
-            "name": "reverse"
-          }
-        ],
-        "name": "each",
-        "owner": "Ext.Array",
-        "doc": "<p>Iterates an array or an iterable value and invoke the given callback function for each item.</p>\n\n<pre><code>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</code></pre>\n\n<p>The iteration can be stopped by returning false in the function callback.</p>\n\n<pre><code>Ext.Array.each(countries, function(name, index, countriesItSelf) {\n    if (name === 'Singapore') {\n        return false; // break here\n    }\n});\n</code></pre>\n\n<p><a href=\"#/api/Ext-method-each\" rel=\"Ext-method-each\" class=\"docClass\">Ext.each</a> is alias for <a href=\"#/api/Ext.Array-method-each\" rel=\"Ext.Array-method-each\" class=\"docClass\">Ext.Array.each</a></p>\n",
-        "linenr": 188,
-        "return": {
-          "type": "Boolean",
-          "doc": "<p>See description for the <code>fn</code> parameter.</p>\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": "<p>The Array on which to replace.</p>\n",
-            "name": "array"
-          },
-          {
-            "type": "Number",
-            "optional": false,
-            "doc": "<p>The index in the array at which to operate.</p>\n",
-            "name": "index"
-          },
-          {
-            "type": "Number",
-            "optional": false,
-            "doc": "<p>The number of items to remove at index.</p>\n",
-            "name": "removeCount"
-          }
-        ],
-        "name": "erase",
-        "owner": "Ext.Array",
-        "doc": "<p>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).</p>\n",
-        "linenr": 920,
-        "return": {
-          "type": "Array",
-          "doc": "<p>The array passed.</p>\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": "<p>Callback function for each item</p>\n",
-            "name": "fn"
-          },
-          {
-            "type": "Object",
-            "optional": false,
-            "doc": "<p>Callback function scope</p>\n",
-            "name": "scope"
-          }
-        ],
-        "name": "every",
-        "owner": "Ext.Array",
-        "doc": "<p>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.</p>\n",
-        "linenr": 432,
-        "return": {
-          "type": "Boolean",
-          "doc": "<p>True if no false value is returned by the callback function.</p>\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": "<p>Callback function for each item</p>\n",
-            "name": "fn"
-          },
-          {
-            "type": "Object",
-            "optional": false,
-            "doc": "<p>Callback function scope</p>\n",
-            "name": "scope"
-          }
-        ],
-        "name": "filter",
-        "owner": "Ext.Array",
-        "doc": "<p>Creates a new array with all of the elements of this array for which\nthe provided filtering function returns true.</p>\n",
-        "linenr": 543,
-        "return": {
-          "type": "Array",
-          "doc": "<p>results</p>\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": "<p>Recursively flattens into 1-d Array. Injects Arrays inline.</p>\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": "<p>The array to iterate</p>\n",
-            "name": "array"
-          },
-          {
-            "type": "Function",
-            "optional": false,
-            "doc": "<p>The function callback, to be invoked these arguments:</p>\n\n<ul>\n<li><code>item</code> : Mixed - The item at the current <code>index</code> in the passed <code>array</code></li>\n<li><code>index</code> : Number - The current <code>index</code> within the <code>array</code></li>\n<li><code>allItems</code> : Array - The <code>array</code> itself which was passed as the first argument</li>\n</ul>\n\n",
-            "name": "fn"
-          },
-          {
-            "type": "Object",
-            "optional": false,
-            "doc": "<p>(Optional) The execution scope (<code>this</code>) in which the specified function is executed.</p>\n",
-            "name": "scope"
-          }
-        ],
-        "name": "forEach",
-        "owner": "Ext.Array",
-        "doc": "<p>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\n<a href=\"#/api/Ext.Array-method-each\" rel=\"Ext.Array-method-each\" class=\"docClass\">each</a>. However, performance could be much better in modern browsers comparing with\n<a href=\"#/api/Ext.Array-method-each\" rel=\"Ext.Array-method-each\" class=\"docClass\">each</a></p>\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": "<p>The value to convert to an array if it's not already is an array</p>\n",
-            "name": "value"
-          },
-          {
-            "type": "Boolean",
-            "optional": false,
-            "doc": "<p>(Optional) newReference True to clone the given array and return a new reference if necessary,\ndefaults to false</p>\n",
-            "name": "newReference"
-          }
-        ],
-        "name": "from",
-        "owner": "Ext.Array",
-        "doc": "<p>Converts a value to an array if it's not already an array; returns:</p>\n\n<ul>\n<li>An empty array if given value is <code>undefined</code> or <code>null</code></li>\n<li>Itself if given value is already an array</li>\n<li>An array copy if given value is <a href=\"#/api/Ext-method-isIterable\" rel=\"Ext-method-isIterable\" class=\"docClass\">iterable</a> (arguments, NodeList and alike)</li>\n<li>An array with one item which is the given value, otherwise</li>\n</ul>\n\n",
-        "linenr": 570,
-        "return": {
-          "type": "Array",
-          "doc": "<p>array</p>\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": "<p>The array</p>\n",
-            "name": "array"
-          },
-          {
-            "type": "Mixed",
-            "optional": false,
-            "doc": "<p>The item to include</p>\n",
-            "name": "item"
-          }
-        ],
-        "name": "include",
-        "owner": "Ext.Array",
-        "doc": "<p>Push an item into the array only if the array doesn't contain it yet</p>\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": "<p>The array to check</p>\n",
-            "name": "array"
-          },
-          {
-            "type": "Mixed",
-            "optional": false,
-            "doc": "<p>The item to look for</p>\n",
-            "name": "item"
-          },
-          {
-            "type": "Number",
-            "optional": false,
-            "doc": "<p>(Optional) The index at which to begin the search</p>\n",
-            "name": "from"
-          }
-        ],
-        "name": "indexOf",
-        "owner": "Ext.Array",
-        "doc": "<p>Get the index of the provided <code>item</code> in the given <code>array</code>, a supplement for the\nmissing arrayPrototype.indexOf in Internet Explorer.</p>\n",
-        "linenr": 286,
-        "return": {
-          "type": "Number",
-          "doc": "<p>The index of item in the array (or -1 if it is not found)</p>\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": "<p>The Array on which to replace.</p>\n",
-            "name": "array"
-          },
-          {
-            "type": "Number",
-            "optional": false,
-            "doc": "<p>The index in the array at which to operate.</p>\n",
-            "name": "index"
-          },
-          {
-            "type": "Array",
-            "optional": false,
-            "doc": "<p>The array of items to insert at index.</p>\n",
-            "name": "items"
-          }
-        ],
-        "name": "insert",
-        "owner": "Ext.Array",
-        "doc": "<p>Inserts items in to an array.</p>\n",
-        "linenr": 933,
-        "return": {
-          "type": "Array",
-          "doc": "<p>The array passed.</p>\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": "<p>Merge multiple arrays into one with unique items that exist in all of the arrays.</p>\n",
-        "linenr": 662,
-        "return": {
-          "type": "Array",
-          "doc": "<p>intersect</p>\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": "<p>Callback function for each item</p>\n",
-            "name": "fn"
-          },
-          {
-            "type": "Object",
-            "optional": false,
-            "doc": "<p>Callback function scope</p>\n",
-            "name": "scope"
-          }
-        ],
-        "name": "map",
-        "owner": "Ext.Array",
-        "doc": "<p>Creates a new array with the results of calling a provided function on every element in this array.</p>\n",
-        "linenr": 408,
-        "return": {
-          "type": "Array",
-          "doc": "<p>results</p>\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": "<p>The Array from which to select the maximum value.</p>\n",
-            "name": "array"
-          },
-          {
-            "type": "Function",
-            "optional": true,
-            "doc": "<p>(optional) a function to perform the comparision which determines maximization.\nIf omitted the \">\" operator will be used. Note: gt = 1; eq = 0; lt = -1</p>\n",
-            "name": "comparisonFn"
-          }
-        ],
-        "name": "max",
-        "owner": "Ext.Array",
-        "doc": "<p>Returns the maximum value in the Array.</p>\n",
-        "linenr": 856,
-        "return": {
-          "type": "Mixed",
-          "doc": "<p>maxValue The maximum value</p>\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": "<p>The Array to calculate the mean value of.</p>\n",
-            "name": "array"
-          }
-        ],
-        "name": "mean",
-        "owner": "Ext.Array",
-        "doc": "<p>Calculates the mean of all items in the array.</p>\n",
-        "linenr": 886,
-        "return": {
-          "type": "Number",
-          "doc": "<p>The mean.</p>\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": "<p>Merge multiple arrays into one with unique items.</p>\n\n<p><a href=\"#/api/Ext.Array-method-union\" rel=\"Ext.Array-method-union\" class=\"docClass\">union</a> is alias for <a href=\"#/api/Ext.Array-method-merge\" rel=\"Ext.Array-method-merge\" class=\"docClass\">merge</a></p>\n",
-        "linenr": 640,
-        "return": {
-          "type": "Array",
-          "doc": "<p>merged</p>\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": "<p>The Array from which to select the minimum value.</p>\n",
-            "name": "array"
-          },
-          {
-            "type": "Function",
-            "optional": true,
-            "doc": "<p>(optional) a function to perform the comparision which determines minimization.\nIf omitted the \"&lt;\" operator will be used. Note: gt = 1; eq = 0; lt = -1</p>\n",
-            "name": "comparisonFn"
-          }
-        ],
-        "name": "min",
-        "owner": "Ext.Array",
-        "doc": "<p>Returns the minimum value in the Array.</p>\n",
-        "linenr": 826,
-        "return": {
-          "type": "Mixed",
-          "doc": "<p>minValue The minimum value</p>\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": "<p>The Array of items to pluck the value from.</p>\n",
-            "name": "array"
-          },
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>The property name to pluck from each element.</p>\n",
-            "name": "propertyName"
-          }
-        ],
-        "name": "pluck",
-        "owner": "Ext.Array",
-        "doc": "<p>Plucks the value of a property from each item in the Array. Example:</p>\n\n<pre><code>Ext.Array.pluck(Ext.query(\"p\"), \"className\"); // [el1.className, el2.className, ..., elN.className]\n</code></pre>\n",
-        "linenr": 386,
-        "return": {
-          "type": "Array",
-          "doc": "<p>The value from each item in the Array.</p>\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": "<p>The array</p>\n",
-            "name": "array"
-          },
-          {
-            "type": "Mixed",
-            "optional": false,
-            "doc": "<p>The item to remove</p>\n",
-            "name": "item"
-          }
-        ],
-        "name": "remove",
-        "owner": "Ext.Array",
-        "doc": "<p>Removes the specified item from the array if it exists</p>\n",
-        "linenr": 599,
-        "return": {
-          "type": "Array",
-          "doc": "<p>The passed array itself</p>\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": "<p>The Array on which to replace.</p>\n",
-            "name": "array"
-          },
-          {
-            "type": "Number",
-            "optional": false,
-            "doc": "<p>The index in the array at which to operate.</p>\n",
-            "name": "index"
-          },
-          {
-            "type": "Number",
-            "optional": false,
-            "doc": "<p>The number of items to remove at index (can be 0).</p>\n",
-            "name": "removeCount"
-          },
-          {
-            "type": "Array",
-            "optional": false,
-            "doc": "<p>An optional array of items to insert at index.</p>\n",
-            "name": "insert"
-          }
-        ],
-        "name": "replace",
-        "owner": "Ext.Array",
-        "doc": "<p>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.</p>\n",
-        "linenr": 945,
-        "return": {
-          "type": "Array",
-          "doc": "<p>The array passed.</p>\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": "<p>The array (or arguments object).</p>\n",
-            "name": "array"
-          },
-          {
-            "type": "Number",
-            "optional": false,
-            "doc": "<p>The index at which to begin. Negative values are offsets from\nthe end of the array.</p>\n",
-            "name": "begin"
-          },
-          {
-            "type": "Number",
-            "optional": false,
-            "doc": "<p>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.</p>\n",
-            "name": "end"
-          }
-        ],
-        "name": "slice",
-        "owner": "Ext.Array",
-        "doc": "<p>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.</p>\n",
-        "linenr": 738,
-        "return": {
-          "type": "Array",
-          "doc": "<p>The copied piece of the array.</p>\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": "<p>Callback function for each item</p>\n",
-            "name": "fn"
-          },
-          {
-            "type": "Object",
-            "optional": false,
-            "doc": "<p>Callback function scope</p>\n",
-            "name": "scope"
-          }
-        ],
-        "name": "some",
-        "owner": "Ext.Array",
-        "doc": "<p>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.</p>\n",
-        "linenr": 464,
-        "return": {
-          "type": "Boolean",
-          "doc": "<p>True if the callback function returns a truthy value.</p>\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": "<p>The array to sort.</p>\n",
-            "name": "array"
-          },
-          {
-            "type": "Function",
-            "optional": true,
-            "doc": "<p>(optional) The comparison function.</p>\n",
-            "name": "sortFn"
-          }
-        ],
-        "name": "sort",
-        "owner": "Ext.Array",
-        "doc": "<p>Sorts the elements of an Array.\nBy default, this method sorts the elements alphabetically and ascending.</p>\n",
-        "linenr": 756,
-        "return": {
-          "type": "Array",
-          "doc": "<p>The sorted array.</p>\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": "<p>The Array on which to replace.</p>\n",
-            "name": "array"
-          },
-          {
-            "type": "Number",
-            "optional": false,
-            "doc": "<p>The index in the array at which to operate.</p>\n",
-            "name": "index"
-          },
-          {
-            "type": "Number",
-            "optional": false,
-            "doc": "<p>The number of items to remove at index (can be 0).</p>\n",
-            "name": "removeCount"
-          }
-        ],
-        "name": "splice",
-        "owner": "Ext.Array",
-        "doc": "<p>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.</p>\n",
-        "linenr": 960,
-        "return": {
-          "type": "Array",
-          "doc": "<p>An array containing the removed items.</p>\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": "<p>The Array to calculate the sum value of.</p>\n",
-            "name": "array"
-          }
-        ],
-        "name": "sum",
-        "owner": "Ext.Array",
-        "doc": "<p>Calculates the sum of all items in the given array.</p>\n",
-        "linenr": 896,
-        "return": {
-          "type": "Number",
-          "doc": "<p>The sum.</p>\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": "<p>the iterable object to be turned into a true Array.</p>\n",
-            "name": "iterable"
-          },
-          {
-            "type": "Number",
-            "optional": false,
-            "doc": "<p>(Optional) a zero-based index that specifies the start of extraction. Defaults to 0</p>\n",
-            "name": "start"
-          },
-          {
-            "type": "Number",
-            "optional": false,
-            "doc": "<p>(Optional) a zero-based index that specifies the end of extraction. Defaults to the last\nindex of the iterable value</p>\n",
-            "name": "end"
-          }
-        ],
-        "name": "toArray",
-        "owner": "Ext.Array",
-        "doc": "<p>Converts any iterable (numeric indices and a length property) into a true array.</p>\n\n<pre><code>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</code></pre>\n\n<p><a href=\"#/api/Ext-method-toArray\" rel=\"Ext-method-toArray\" class=\"docClass\">Ext.toArray</a> is alias for <a href=\"#/api/Ext.Array-method-toArray\" rel=\"Ext.Array-method-toArray\" class=\"docClass\">Ext.Array.toArray</a></p>\n",
-        "linenr": 334,
-        "return": {
-          "type": "Array",
-          "doc": "<p>array</p>\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": "<p>Merge multiple arrays into one with unique items.</p>\n\n<p><a href=\"#/api/Ext.Array-method-union\" rel=\"Ext.Array-method-union\" class=\"docClass\">union</a> is alias for <a href=\"#/api/Ext.Array-method-merge\" rel=\"Ext.Array-method-merge\" class=\"docClass\">merge</a></p>\n",
-        "linenr": 982,
-        "return": {
-          "type": "Array",
-          "doc": "<p>merged</p>\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": "<p>Returns a new array with unique items</p>\n",
-        "linenr": 520,
-        "return": {
-          "type": "Array",
-          "doc": "<p>results</p>\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 <jacky@sencha.com>",
-  "component": false,
-  "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js",
-  "private": false,
-  "alternateClassNames": [
-
-  ],
-  "name": "Ext.Array",
-  "doc": "<p>A set of useful static methods to deal with arrays; provide missing methods for older browsers.</p>\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":"<div><pre class=\"hierarchy\"><h4>Files</h4><div class='dependency'><a href='source/Array3.html#Ext-Array' target='_blank'>Array.js</a></div></pre><div class='doc-contents'><p>A set of useful static methods to deal with arrays; provide missing methods for older browsers.</p>\n</div><div class='members'><div id='m-property'><div class='definedBy'>Defined By</div><h3 class='members-title'>Properties</h3><div class='subsection'><div id='property-slice' class='member first-child not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-property-slice' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-property-slice' class='name expandable'>slice</a><span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></span></div><div class='description'><div class='short'>Returns a shallow copy of a part of an array. ...</div><div class='long'><p>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.</p>\n</div></div></div></div></div><div id='m-method'><div class='definedBy'>Defined By</div><h3 class='members-title'>Methods</h3><div class='subsection'><div id='method-clean' class='member first-child not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-clean' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-clean' class='name expandable'>clean</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Filter through an array and remove empty item as defined in Ext.isEmpty\n\nSee filter ...</div><div class='long'><p>Filter through an array and remove empty item as defined in <a href=\"#!/api/Ext-method-isEmpty\" rel=\"Ext-method-isEmpty\" class=\"docClass\">Ext.isEmpty</a></p>\n\n<p>See <a href=\"#!/api/Ext.Array-method-filter\" rel=\"Ext.Array-method-filter\" class=\"docClass\">filter</a></p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>results</p>\n</div></li></ul></div></div></div><div id='method-clone' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-clone' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-clone' class='name expandable'>clone</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Clone a flat array without referencing the previous one. ...</div><div class='long'><p>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)</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The array</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>The clone array</p>\n</div></li></ul></div></div></div><div id='method-contains' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-contains' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-contains' class='name expandable'>contains</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array, <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> item</span> ) : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></div><div class='description'><div class='short'>Checks whether or not the given array contains the specified item ...</div><div class='long'><p>Checks whether or not the given <code>array</code> contains the specified <code>item</code></p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The array to check</p>\n</div></li><li><span class='pre'>item</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>The item to look for</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></span><div class='sub-desc'><p>True if the array contains the item, false otherwise</p>\n</div></li></ul></div></div></div><div id='method-difference' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-difference' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-difference' class='name expandable'>difference</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> arrayA, <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> arrayB</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Perform a set difference A-B by subtracting all items in array B from array A. ...</div><div class='long'><p>Perform a set difference A-B by subtracting all items in array B from array A.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>arrayA</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li><li><span class='pre'>arrayB</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>difference</p>\n</div></li></ul></div></div></div><div id='method-each' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-each' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-each' class='name expandable'>each</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a>/NodeList/<a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> iterable, <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a> fn, [<a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> scope], [<a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a> reverse]</span> ) : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></div><div class='description'><div class='short'>Iterates an array or an iterable value and invoke the given callback function for each item. ...</div><div class='long'><p>Iterates an array or an iterable value and invoke the given callback function for each item.</p>\n\n<pre><code>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</code></pre>\n\n<p>The iteration can be stopped by returning false in the function callback.</p>\n\n<pre><code>Ext.Array.each(countries, function(name, index, countriesItSelf) {\n    if (name === 'Singapore') {\n        return false; // break here\n    }\n});\n</code></pre>\n\n<p><a href=\"#!/api/Ext-method-each\" rel=\"Ext-method-each\" class=\"docClass\">Ext.each</a> is alias for <a href=\"#!/api/Ext.Array-method-each\" rel=\"Ext.Array-method-each\" class=\"docClass\">Ext.Array.each</a></p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>iterable</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a>/NodeList/<a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>The value to be iterated. If this\nargument is not iterable, the callback function is called once.</p>\n</div></li><li><span class='pre'>fn</span> : <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a><div class='sub-desc'><p>The callback function. If it returns false, the iteration stops and this method returns\nthe current <code>index</code>.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>item</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>The item at the current <code>index</code> in the passed <code>array</code></p>\n</div></li><li><span class='pre'>index</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>The current <code>index</code> within the <code>array</code></p>\n</div></li><li><span class='pre'>allItems</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The <code>array</code> itself which was passed as the first argument</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></span><div class='sub-desc'><p>Return false to stop iteration.</p>\n</div></li></ul></div></li><li><span class='pre'>scope</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> (optional)<div class='sub-desc'><p>The scope (<code>this</code> reference) in which the specified function is executed.</p>\n</div></li><li><span class='pre'>reverse</span> : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a> (optional)<div class='sub-desc'><p>Reverse the iteration order (loop from the end to the beginning)\nDefaults false</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></span><div class='sub-desc'><p>See description for the <code>fn</code> parameter.</p>\n</div></li></ul></div></div></div><div id='method-erase' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-erase' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-erase' class='name expandable'>erase</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array, <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> index, <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> removeCount</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Removes items from an array. ...</div><div class='long'><p>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).</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The Array on which to replace.</p>\n</div></li><li><span class='pre'>index</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>The index in the array at which to operate.</p>\n</div></li><li><span class='pre'>removeCount</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>The number of items to remove at index.</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>The array passed.</p>\n</div></li></ul></div></div></div><div id='method-every' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-every' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-every' class='name expandable'>every</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array, <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a> fn, <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> scope</span> ) : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></div><div class='description'><div class='short'>Executes the specified function for each array element until the function returns a falsy value. ...</div><div class='long'><p>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.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li><li><span class='pre'>fn</span> : <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a><div class='sub-desc'><p>Callback function for each item</p>\n</div></li><li><span class='pre'>scope</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>Callback function scope</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></span><div class='sub-desc'><p>True if no false value is returned by the callback function.</p>\n</div></li></ul></div></div></div><div id='method-filter' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-filter' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-filter' class='name expandable'>filter</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array, <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a> fn, <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> scope</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Creates a new array with all of the elements of this array for which\nthe provided filtering function returns true. ...</div><div class='long'><p>Creates a new array with all of the elements of this array for which\nthe provided filtering function returns true.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li><li><span class='pre'>fn</span> : <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a><div class='sub-desc'><p>Callback function for each item</p>\n</div></li><li><span class='pre'>scope</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>Callback function scope</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>results</p>\n</div></li></ul></div></div></div><div id='method-flatten' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-flatten' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-flatten' class='name expandable'>flatten</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Recursively flattens into 1-d Array. ...</div><div class='long'><p>Recursively flattens into 1-d Array. Injects Arrays inline.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The array to flatten</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>The 1-d array.</p>\n</div></li></ul></div></div></div><div id='method-forEach' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-forEach' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-forEach' class='name expandable'>forEach</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array, <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a> fn, [<a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> scope]</span> )</div><div class='description'><div class='short'>Iterates an array and invoke the given callback function for each item. ...</div><div class='long'><p>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 <a href=\"#!/api/Ext.Array-method-each\" rel=\"Ext.Array-method-each\" class=\"docClass\">each</a>. However, performance\ncould be much better in modern browsers comparing with <a href=\"#!/api/Ext.Array-method-each\" rel=\"Ext.Array-method-each\" class=\"docClass\">each</a></p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The array to iterate</p>\n</div></li><li><span class='pre'>fn</span> : <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a><div class='sub-desc'><p>The callback function.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>item</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>The item at the current <code>index</code> in the passed <code>array</code></p>\n</div></li><li><span class='pre'>index</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>The current <code>index</code> within the <code>array</code></p>\n</div></li><li><span class='pre'>allItems</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The <code>array</code> itself which was passed as the first argument</p>\n</div></li></ul></div></li><li><span class='pre'>scope</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> (optional)<div class='sub-desc'><p>The execution scope (<code>this</code>) in which the specified function is executed.</p>\n</div></li></ul></div></div></div><div id='method-from' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-from' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-from' class='name expandable'>from</a>( <span class='pre'><a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> value, [<a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a> newReference]</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>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...</div><div class='long'><p>Converts a value to an array if it's not already an array; returns:</p>\n\n<ul>\n<li>An empty array if given value is <code>undefined</code> or <code>null</code></li>\n<li>Itself if given value is already an array</li>\n<li>An array copy if given value is <a href=\"#!/api/Ext-method-isIterable\" rel=\"Ext-method-isIterable\" class=\"docClass\">iterable</a> (arguments, NodeList and alike)</li>\n<li>An array with one item which is the given value, otherwise</li>\n</ul>\n\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>value</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>The value to convert to an array if it's not already is an array</p>\n</div></li><li><span class='pre'>newReference</span> : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a> (optional)<div class='sub-desc'><p>True to clone the given array and return a new reference if necessary,\ndefaults to false</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>array</p>\n</div></li></ul></div></div></div><div id='method-include' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-include' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-include' class='name expandable'>include</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array, <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> item</span> )</div><div class='description'><div class='short'>Push an item into the array only if the array doesn't contain it yet ...</div><div class='long'><p>Push an item into the array only if the array doesn't contain it yet</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The array</p>\n</div></li><li><span class='pre'>item</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>The item to include</p>\n</div></li></ul></div></div></div><div id='method-indexOf' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-indexOf' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-indexOf' class='name expandable'>indexOf</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array, <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> item, [<a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> from]</span> ) : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a></div><div class='description'><div class='short'>Get the index of the provided item in the given array, a supplement for the\nmissing arrayPrototype.indexOf in Interne...</div><div class='long'><p>Get the index of the provided <code>item</code> in the given <code>array</code>, a supplement for the\nmissing arrayPrototype.indexOf in Internet Explorer.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The array to check</p>\n</div></li><li><span class='pre'>item</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>The item to look for</p>\n</div></li><li><span class='pre'>from</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> (optional)<div class='sub-desc'><p>The index at which to begin the search</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a></span><div class='sub-desc'><p>The index of item in the array (or -1 if it is not found)</p>\n</div></li></ul></div></div></div><div id='method-insert' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-insert' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-insert' class='name expandable'>insert</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array, <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> index, <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> items</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Inserts items in to an array. ...</div><div class='long'><p>Inserts items in to an array.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The Array on which to replace.</p>\n</div></li><li><span class='pre'>index</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>The index in the array at which to operate.</p>\n</div></li><li><span class='pre'>items</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The array of items to insert at index.</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>The array passed.</p>\n</div></li></ul></div></div></div><div id='method-intersect' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-intersect' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-intersect' class='name expandable'>intersect</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array1, <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array2, <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> etc</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Merge multiple arrays into one with unique items that exist in all of the arrays. ...</div><div class='long'><p>Merge multiple arrays into one with unique items that exist in all of the arrays.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array1</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li><li><span class='pre'>array2</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li><li><span class='pre'>etc</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>intersect</p>\n</div></li></ul></div></div></div><div id='method-map' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-map' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-map' class='name expandable'>map</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array, <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a> fn, <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> scope</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Creates a new array with the results of calling a provided function on every element in this array. ...</div><div class='long'><p>Creates a new array with the results of calling a provided function on every element in this array.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li><li><span class='pre'>fn</span> : <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a><div class='sub-desc'><p>Callback function for each item</p>\n</div></li><li><span class='pre'>scope</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>Callback function scope</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>results</p>\n</div></li></ul></div></div></div><div id='method-max' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-max' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-max' class='name expandable'>max</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a>/NodeList array, [<a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a> comparisonFn]</span> ) : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></div><div class='description'><div class='short'>Returns the maximum value in the Array. ...</div><div class='long'><p>Returns the maximum value in the Array.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a>/NodeList<div class='sub-desc'><p>The Array from which to select the maximum value.</p>\n</div></li><li><span class='pre'>comparisonFn</span> : <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a> (optional)<div class='sub-desc'><p>a function to perform the comparision which determines maximization.\nIf omitted the \">\" operator will be used. Note: gt = 1; eq = 0; lt = -1</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></span><div class='sub-desc'><p>maxValue The maximum value</p>\n</div></li></ul></div></div></div><div id='method-mean' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-mean' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-mean' class='name expandable'>mean</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array</span> ) : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a></div><div class='description'><div class='short'>Calculates the mean of all items in the array. ...</div><div class='long'><p>Calculates the mean of all items in the array.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The Array to calculate the mean value of.</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a></span><div class='sub-desc'><p>The mean.</p>\n</div></li></ul></div></div></div><div id='method-merge' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-merge' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-merge' class='name expandable'>merge</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array1, <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array2, <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> etc</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Merge multiple arrays into one with unique items. ...</div><div class='long'><p>Merge multiple arrays into one with unique items.</p>\n\n<p><a href=\"#!/api/Ext.Array-method-union\" rel=\"Ext.Array-method-union\" class=\"docClass\">union</a> is alias for <a href=\"#!/api/Ext.Array-method-merge\" rel=\"Ext.Array-method-merge\" class=\"docClass\">merge</a></p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array1</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li><li><span class='pre'>array2</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li><li><span class='pre'>etc</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>merged</p>\n\n</div></li></ul></div></div></div><div id='method-min' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-min' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-min' class='name expandable'>min</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a>/NodeList array, [<a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a> comparisonFn]</span> ) : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></div><div class='description'><div class='short'>Returns the minimum value in the Array. ...</div><div class='long'><p>Returns the minimum value in the Array.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a>/NodeList<div class='sub-desc'><p>The Array from which to select the minimum value.</p>\n</div></li><li><span class='pre'>comparisonFn</span> : <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a> (optional)<div class='sub-desc'><p>a function to perform the comparision which determines minimization.\nIf omitted the \"&lt;\" operator will be used. Note: gt = 1; eq = 0; lt = -1</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></span><div class='sub-desc'><p>minValue The minimum value</p>\n</div></li></ul></div></div></div><div id='method-pluck' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-pluck' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-pluck' class='name expandable'>pluck</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a>/NodeList array, <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> propertyName</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Plucks the value of a property from each item in the Array. ...</div><div class='long'><p>Plucks the value of a property from each item in the Array. Example:</p>\n\n<pre><code>Ext.Array.pluck(Ext.query(\"p\"), \"className\"); // [el1.className, el2.className, ..., elN.className]\n</code></pre>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a>/NodeList<div class='sub-desc'><p>The Array of items to pluck the value from.</p>\n</div></li><li><span class='pre'>propertyName</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>The property name to pluck from each element.</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>The value from each item in the Array.</p>\n</div></li></ul></div></div></div><div id='method-remove' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-remove' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-remove' class='name expandable'>remove</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array, <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> item</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Removes the specified item from the array if it exists ...</div><div class='long'><p>Removes the specified item from the array if it exists</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The array</p>\n</div></li><li><span class='pre'>item</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>The item to remove</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>The passed array itself</p>\n</div></li></ul></div></div></div><div id='method-replace' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-replace' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-replace' class='name expandable'>replace</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array, <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> index, <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> removeCount, [<a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> insert]</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Replaces items in an array. ...</div><div class='long'><p>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.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The Array on which to replace.</p>\n</div></li><li><span class='pre'>index</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>The index in the array at which to operate.</p>\n</div></li><li><span class='pre'>removeCount</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>The number of items to remove at index (can be 0).</p>\n</div></li><li><span class='pre'>insert</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> (optional)<div class='sub-desc'><p>An array of items to insert at index.</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>The array passed.</p>\n</div></li></ul></div></div></div><div id='method-some' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-some' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-some' class='name expandable'>some</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array, <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a> fn, <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> scope</span> ) : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></div><div class='description'><div class='short'>Executes the specified function for each array element until the function returns a truthy value. ...</div><div class='long'><p>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.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li><li><span class='pre'>fn</span> : <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a><div class='sub-desc'><p>Callback function for each item</p>\n</div></li><li><span class='pre'>scope</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>Callback function scope</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></span><div class='sub-desc'><p>True if the callback function returns a truthy value.</p>\n</div></li></ul></div></div></div><div id='method-sort' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-sort' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-sort' class='name expandable'>sort</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array, [<a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a> sortFn]</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Sorts the elements of an Array. ...</div><div class='long'><p>Sorts the elements of an Array.\nBy default, this method sorts the elements alphabetically and ascending.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The array to sort.</p>\n</div></li><li><span class='pre'>sortFn</span> : <a href=\"#!/api/Function\" rel=\"Function\" class=\"docClass\">Function</a> (optional)<div class='sub-desc'><p>The comparison function.</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>The sorted array.</p>\n</div></li></ul></div></div></div><div id='method-splice' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-splice' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-splice' class='name expandable'>splice</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array, <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> index, <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> removeCount</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Replaces items in an array. ...</div><div class='long'><p>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.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The Array on which to replace.</p>\n</div></li><li><span class='pre'>index</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>The index in the array at which to operate.</p>\n</div></li><li><span class='pre'>removeCount</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>The number of items to remove at index (can be 0).</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>An array containing the removed items.</p>\n</div></li></ul></div></div></div><div id='method-sum' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-sum' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-sum' class='name expandable'>sum</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array</span> ) : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a></div><div class='description'><div class='short'>Calculates the sum of all items in the given array. ...</div><div class='long'><p>Calculates the sum of all items in the given array.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'><p>The Array to calculate the sum value of.</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a></span><div class='sub-desc'><p>The sum.</p>\n</div></li></ul></div></div></div><div id='method-toArray' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-toArray' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-toArray' class='name expandable'>toArray</a>( <span class='pre'><a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> iterable, [<a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> start], [<a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> end]</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Converts any iterable (numeric indices and a length property) into a true array. ...</div><div class='long'><p>Converts any iterable (numeric indices and a length property) into a true array.</p>\n\n<pre><code>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</code></pre>\n\n<p><a href=\"#!/api/Ext-method-toArray\" rel=\"Ext-method-toArray\" class=\"docClass\">Ext.toArray</a> is alias for <a href=\"#!/api/Ext.Array-method-toArray\" rel=\"Ext.Array-method-toArray\" class=\"docClass\">Ext.Array.toArray</a></p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>iterable</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>the iterable object to be turned into a true Array.</p>\n</div></li><li><span class='pre'>start</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> (optional)<div class='sub-desc'><p>a zero-based index that specifies the start of extraction. Defaults to 0</p>\n</div></li><li><span class='pre'>end</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> (optional)<div class='sub-desc'><p>a zero-based index that specifies the end of extraction. Defaults to the last\nindex of the iterable value</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>array</p>\n</div></li></ul></div></div></div><div id='method-union' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-union' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-union' class='name expandable'>union</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array1, <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array2, <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> etc</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Merge multiple arrays into one with unique items. ...</div><div class='long'><p>Merge multiple arrays into one with unique items.</p>\n\n<p><a href=\"#!/api/Ext.Array-method-union\" rel=\"Ext.Array-method-union\" class=\"docClass\">union</a> is alias for <a href=\"#!/api/Ext.Array-method-merge\" rel=\"Ext.Array-method-merge\" class=\"docClass\">merge</a></p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array1</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li><li><span class='pre'>array2</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li><li><span class='pre'>etc</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>merged</p>\n\n</div></li></ul></div></div></div><div id='method-unique' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Array' rel='Ext.Array' class='definedIn docClass'>Ext.Array</a><br/><a href='source/Array3.html#Ext-Array-method-unique' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Array-method-unique' class='name expandable'>unique</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a> array</span> ) : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></div><div class='description'><div class='short'>Returns a new array with unique items ...</div><div class='long'><p>Returns a new array with unique items</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>array</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a><div class='sub-desc'>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a></span><div class='sub-desc'><p>results</p>\n</div></li></ul></div></div></div></div></div></div></div>","allMixins":[],"meta":{"author":["Jacky Nguyen <jacky@sencha.com>"],"docauthor":["Jacky Nguyen <jacky@sencha.com>"]},"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