484485486487488489490491492493494
if (!(otherBag instanceof IntBag)) { return false; } final IntBag bag = (IntBag) otherBag; if (this.sizeDistinct() != bag.sizeDistinct()) { return false; } return this.items.keysView().allSatisfy(new IntPredicate()