= private = protected
add?(o)
Adds the given object to the set and returns self. If the object is already in the set, returns nil.
# File lib/set.rb, line 236 def add?(o) if include?(o) nil else add(o) end end