// Textbook fragment 11.10 /** Class specializing the generic merge template to subtract two sets */ public class SubtractMerge extends Merge { protected void aIsLess(E a, PositionList C) { C.addLast(a); // add a } protected void bothAreEqual(E a, E b, PositionList C) { } protected void bIsLess(E b, PositionList C) { } }