4445464748495051525354
@Override public final boolean equals(Object thatSize) { if (thatSize instanceof SizeValue) { SizeValue that = (SizeValue) thatSize; return this.asLong() == that.asLong(); } return false; } @Override
183184185186187188189190191192193
final int value; if (entrySize == null) { value = 0; } else { // assume can fit value = MathExtra.castLongToInt(entrySize.asLong()); } safeSet(arrayFor(entry.type()), clue, value); } placeUpdate(clue); }