Module: Enumerable
- Included in:
- Set
- Defined in:
- lib/set.rb
Instance Method Summary collapse
-
#to_set(klass = Set, *args, &block) ⇒ Object
Makes a set from the enumerable object with given arguments.
Instance Method Details
#to_set(klass = Set, *args, &block) ⇒ Object
Makes a set from the enumerable object with given arguments. Needs to require “set” to use this method.
690 691 692 |
# File 'lib/set.rb', line 690 def to_set(klass = Set, *args, &block) klass.new(self, *args, &block) end |