Skip to content

Commit 677ac08

Browse files
andrykonchineregon
authored andcommittedFeb 6, 2024
[GR-45621] Promote Set class to core library
PullRequest: truffleruby/4135
2 parents 92ed4d9 + 1aedc2a commit 677ac08

File tree

9 files changed

+64
-0
lines changed

9 files changed

+64
-0
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Compatibility:
4444
* Do not autosplat a proc that accepts a single positional argument and keywords (#3039, @andrykonchin).
4545
* Support passing anonymous * and ** parameters as method call arguments (#3039, @andrykonchin).
4646
* Handle either positional or keywords arguments by default in `Struct.new` (#3039, @rwstauner).
47+
* Promote `Set` class to core library (#3039, @andrykonchin).
4748

4849
Performance:
4950

‎spec/ruby/core/enumerable/fixtures/classes.rb

+6
Original file line numberDiff line numberDiff line change
@@ -342,4 +342,10 @@ def ===(*args)
342342
@block.call(*args)
343343
end
344344
end
345+
346+
# Set is a core class since Ruby 3.2
347+
ruby_version_is '3.2' do
348+
class SetSubclass < Set
349+
end
350+
end
345351
end # EnumerableSpecs utility classes
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
require_relative '../../spec_helper'
2+
require_relative 'fixtures/classes'
3+
4+
ruby_version_is "3.2" do
5+
describe "Enumerable#to_set" do
6+
it "returns a new Set created from self" do
7+
[1, 2, 3].to_set.should == Set[1, 2, 3]
8+
{a: 1, b: 2}.to_set.should == Set[[:b, 2], [:a, 1]]
9+
end
10+
11+
it "passes down passed blocks" do
12+
[1, 2, 3].to_set { |x| x * x }.should == Set[1, 4, 9]
13+
end
14+
15+
it "instantiates an object of provided as the first argument set class" do
16+
set = [1, 2, 3].to_set(EnumerableSpecs::SetSubclass)
17+
set.should be_kind_of(EnumerableSpecs::SetSubclass)
18+
set.to_a.sort.should == [1, 2, 3]
19+
end
20+
21+
it "does not need explicit `require 'set'`" do
22+
output = ruby_exe(<<~RUBY, options: '--disable-gems', args: '2>&1')
23+
puts [1, 2, 3].to_set
24+
RUBY
25+
26+
output.chomp.should == "#<Set: {1, 2, 3}>"
27+
end
28+
end
29+
end

‎spec/ruby/library/set/set_spec.rb

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
require_relative '../../spec_helper'
2+
3+
describe 'Set' do
4+
ruby_version_is '3.2' do
5+
it 'is available without explicit requiring' do
6+
output = ruby_exe(<<~RUBY, options: '--disable-gems', args: '2>&1')
7+
puts Set.new([1, 2, 3])
8+
RUBY
9+
output.chomp.should == "#<Set: {1, 2, 3}>"
10+
end
11+
end
12+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
slow:Enumerable#to_set does not need explicit `require 'set'`

‎spec/tags/library/set/set_tags.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
slow:Set is available without explicit requiring

‎src/main/ruby/truffleruby/core/enumerable.rb

+4
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,10 @@ def to_h(*arg)
332332
h
333333
end
334334

335+
def to_set(klass = Set, ...)
336+
klass.new(self, ...)
337+
end
338+
335339
# Synchronize with Enumerator#zip and Array#zip
336340
def zip(*enums)
337341
enums.map! do |enum|

‎src/main/ruby/truffleruby/core/post.rb

+5
Original file line numberDiff line numberDiff line change
@@ -112,3 +112,8 @@ def p(*a)
112112
$LOAD_PATH.unshift(*extra_load_paths.map { |path| File.expand_path(path) })
113113
end
114114
end
115+
116+
# Set class is in the core library but it's still possible to require it as a standard
117+
# library with `require`. So it doesn't make sense to have two copies of the same code
118+
# and it's easier just to autoload CRuby's provided source file here.
119+
autoload :Set, 'set'

‎src/main/ruby/truffleruby/core/truffle/versioned_array.rb

+5
Original file line numberDiff line numberDiff line change
@@ -655,6 +655,11 @@ def to_s(*args, &block)
655655
copy.to_s(*args, &block)
656656
end
657657

658+
def to_set(*args, &block)
659+
copy = TruffleRuby.synchronized(@lock) { Array.new self }
660+
copy.to_set(*args, &block)
661+
end
662+
658663
def transpose(*args, &block)
659664
copy = TruffleRuby.synchronized(@lock) { Array.new self }
660665
copy.transpose(*args, &block)

0 commit comments

Comments
 (0)
Please sign in to comment.