= private = protected
delete(o)
Deletes the given object from the set and returns self. Use subtract to delete many items at once.
# File lib/set.rb, line 246 def delete(o) @hash.delete(o) self end