# File lib/enumerize/set.rb, line 21 def <<(value) @values << value mutate! end
# File lib/enumerize/set.rb, line 36 def ==(other) other.size == size && other.all? { |v| @values.include?(@attr.find_value(v)) } end
# File lib/enumerize/set.rb, line 46 def delete(value) @values.delete(@attr.find_value(value)) mutate! end
# File lib/enumerize/set.rb, line 42 def include?(value) @values.include?(@attr.find_value(value)) end
Generated with the Darkfish Rdoc Generator 2.