= private = protected
delete?(o)
Deletes the given object from the set and returns self. If the object is not in the set, returns nil.
# File lib/set.rb, line 373 def delete?(o) delete(o) if include?(o) end