Home | History | Annotate | Download | only in Array

Lines Matching defs:Sort

24     ECMA Section:       Array.prototype.sort(comparefn)
28 In this cases, the sort creates a reverse sort.
30 The elements of this array are sorted. The sort is not necessarily stable.
78 4.If the argument comparefn was not provided in the call to sort, go to step 7.
88 property values always sort to the end of the result. It is implementation-dependent whether or not such
89 properties will exist or not at the end of the array when the sort is concluded.
91 Note that the sort function is intentionally generic; it does not require that its this value be an Array object.
92 Therefore it can be transferred to other kinds of objects for use as a method. Whether the sort function can be
103 var TITLE = "Array.prototype.sort(comparefn)";
158 var E = Sort( A );
161 S +"; A.sort(Compare); A.length",
163 eval( S + "; A.sort(Compare); A.length") );
187 this.sort = Array.prototype.sort;
190 function Sort( a ) {