We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 93211d3 + 449402d commit 165b85eCopy full SHA for 165b85e
spec/tags/truffle/methods_tags.txt
@@ -1,6 +1,3 @@
1
-fails:Public methods on Array should include all?
2
-fails:Public methods on Array should include none?
3
-fails:Public methods on Array should include one?
4
fails:Public methods on File should include birthtime
5
fails:Public methods on File should not include inspect
6
fails:Public methods on File should not include stat
src/main/ruby/truffleruby/core/enumerable.rb
@@ -1030,4 +1030,7 @@ class Array
1030
alias_method :drop_while, :drop_while
1031
alias_method :take_while, :take_while
1032
alias_method :sum, :sum
1033
+ alias_method :all?, :all?
1034
+ alias_method :none?, :none?
1035
+ alias_method :one?, :one?
1036
end
0 commit comments