removeFirst: function removeFirst() {
        if (this.private.first === null) {
          return false;
        }
        return this.private.remove(this.private.first);