# File lib/set.rb, line 220
  def delete?(o)
    if include?(o)
      delete(o)
    else
      nil
    end
  end