Module: Enumerable

Included in:
Color::Palette::AdobeColor, Color::Palette::Gimp, OpenSSL::Buffering, OpenSSL::Config, REXML::AttlistDecl, REXML::Elements, REXML::Parent, REXML::SyncEnumerator, Set, StringInput
Defined in:
lib/framework/set.rb,
lib/extensions/set/set.rb,
lib/extensions/rhoxml/rexml/set.rb

Instance Method Summary collapse

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.



702
703
704
# File 'lib/framework/set.rb', line 702

def to_set(klass = Set, *args, &block)
  klass.new(self, *args, &block)
end