Searched refs:ConsArray (Results 1 – 4 of 4) sorted by relevance
39 function ConsArray() { class40 this.tail_ = new ConsArray.Cell(null, null);53 ConsArray.prototype.concat = function(arr) {56 this.tail_ = this.tail_.next = new ConsArray.Cell(null, null);64 ConsArray.prototype.atEnd = function() {74 ConsArray.prototype.next = function() {89 ConsArray.Cell = function(data, next) {
137 var nodesToTraverse = new ConsArray();
640 var pairsToProcess = new ConsArray();
32 var arr1 = new ConsArray();