= private = protected
add(o)
Adds the given object to the set and returns self. Use merge to add many elements at once.
# File lib/set.rb, line 228 def add(o) @hash[o] = true self end