Makes a set from the enumerable object with given arguments.
[Source]
# File set.rb, line 519 def to_set(klass = Set, *args, &block) klass.new(self, *args, &block) end
[Validate]