(src, srcIndex, dst, dstIndex, len)
| 8116 | },{"./es5":51,"./util":74}],64:[function(require,module,exports){ |
| 8117 | "use strict"; |
| 8118 | function arrayMove(src, srcIndex, dst, dstIndex, len) { |
| 8119 | for (var j = 0; j < len; ++j) { |
| 8120 | dst[j + dstIndex] = src[j + srcIndex]; |
| 8121 | src[j + srcIndex] = void 0; |
| 8122 | } |
| 8123 | } |
| 8124 | |
| 8125 | function Queue(capacity) { |
| 8126 | this._capacity = capacity; |