Method delete
/* Delete one instance of item from the multiset, if there is one. RuntimeException if item out of range. */
public void delete(int item)
if ( item < 0 || item > maxValue )
throw new RuntimeException(
”item out of range for NatMultiset”