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