Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Set available as a built-in class #3439

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Compatibility:
* Do not autosplat a proc that accepts a single positional argument and keywords (#3039, @andrykonchin).
* Support passing anonymous * and ** parameters as method call arguments (#3039, @andrykonchin).
* Handle either positional or keywords arguments by default in `Struct.new` (#3039, @rwstauner).
* Set is now available as a builtin class without the need for `require "set"` (#3039, @patricklinpl).

Performance:

Expand Down
5 changes: 5 additions & 0 deletions src/main/ruby/truffleruby/core/enumerable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1102,6 +1102,11 @@ def chain(*enums)
Enumerator::Chain.new(self, *enums)
end

# Makes a set from the enumerable object with given arguments.
def to_set(klass = Set, *args, &block)
klass.new(self, *args, &block)
end

end

class Array
Expand Down
2 changes: 2 additions & 0 deletions src/main/ruby/truffleruby/core/lazy_rubygems.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,7 @@ class Object
# Defined by RbConfig
autoload :CROSS_COMPILING, 'rbconfig'
end

autoload :Set, 'set'
end
end