From ad78cf4ea8613c7e1790c5e3a2718a35fe32115f Mon Sep 17 00:00:00 2001 From: knu Date: Fri, 19 Jul 2013 02:22:11 +0000 Subject: Define Set#to_set so that aSet.to_set returns self. * lib/set.rb (Set#to_set): Define Set#to_set so that aSet.to_set returns self. [Fixes GH-359] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42051 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/set.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'lib/set.rb') diff --git a/lib/set.rb b/lib/set.rb index a9aa7e7936..47fcc3efc7 100644 --- a/lib/set.rb +++ b/lib/set.rb @@ -148,6 +148,16 @@ class Set @hash.keys end + # Returns self if no arguments are given. Otherwise, converts the + # set to another with klass.new(self, *args, &block). + # + # In subclasses, returns klass.new(self, *args, &block) unless + # overridden. + def to_set(klass = Set, *args, &block) + return self if instance_of?(Set) && klass == Set && block.nil? && args.empty? + klass.new(self, *args, &block) + end + def flatten_merge(set, seen = Set.new) # :nodoc: set.each { |e| if e.is_a?(Set) -- cgit v1.2.3