@Override
public ImmutableGenericBitmap difference(ImmutableGenericBitmap bitmap)
{
WrappedImmutableConciseBitmap other = (WrappedImmutableConciseBitmap) bitmap;
ImmutableConciseSet otherIndex = other.invertedIndex;
return new WrappedImmutableConciseBitmap(
ImmutableConciseSet.intersection(
invertedIndex,
ImmutableConciseSet.complement(otherIndex)
)