dequeue: function () {
        if (this.count() > 0) {
            return this[iterableSymbol].shift();
        }