4 __generic: function (t, a) {
8 a.deep(t.call(self, function (v, i, scope) {
9 a(v, this[i], "Value");
10 a(i, count++, "Index");
11 a(scope, this, "Scope");
13 }, self), { 0: [this[0]], 1: [this[1]], 2: [this[2]] });
17 r = t.call([2, 3, 3, 4, 5, 6, 7, 7, 23, 45, 34, 56],
19 return v % 2 ? 'odd' : 'even';
21 a.deep(r.odd, [3, 3, 5, 7, 7, 23, 45]);
22 a.deep(r.even, [2, 4, 6, 34, 56]);