compactIntersect(): ComposedKeySet<T> {
    return compactWith(this.list, (list) => list.reduce((acc, x) => acc.intersect(x), new KeySetAll<T>()));
  }