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