mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Benchmarks for Array#values_at
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62412 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0efd8bbd34
commit
9a9a4e874d
2 changed files with 4 additions and 0 deletions
2
benchmark/bm_array_values_at_int.rb
Normal file
2
benchmark/bm_array_values_at_int.rb
Normal file
|
@ -0,0 +1,2 @@
|
|||
ary = Array.new(10000) {|i| i}
|
||||
100000.times { ary.values_at(500) }
|
2
benchmark/bm_array_values_at_range.rb
Normal file
2
benchmark/bm_array_values_at_range.rb
Normal file
|
@ -0,0 +1,2 @@
|
|||
ary = Array.new(10000) {|i| i}
|
||||
100000.times { ary.values_at(1..2000) }
|
Loading…
Reference in a new issue