Lines Matching defs:YArray
39 function YArray(thing, startIndex, force) {
44 if (force || YArray.test(thing)) {
62 Y.Array = YArray;
78 YArray.dedupe = function (array) {
110 YArray.each = YArray.forEach = Lang._isNative(Native.forEach) ? function (array, fn, thisObj) {
147 YArray.hash = function (keys, values) {
175 YArray.indexOf = Lang._isNative(Native.indexOf) ? function (array, value, from) {
220 YArray.numericSort = function (a, b) {
240 YArray.some = Lang._isNative(Native.some) ? function (array, fn, thisObj) {
270 YArray.test = function (obj) {