if (cell.prev) {
            cell.prev.next = cell.next;
        } else {
            this._head = cell.next;
        }