mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* benchmark/bm_loop_generator.rb: added.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13250 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
028919d222
commit
487a7da22d
2 changed files with 18 additions and 0 deletions
14
benchmark/bm_loop_generator.rb
Normal file
14
benchmark/bm_loop_generator.rb
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
max = 600000
|
||||
|
||||
if defined? Fiber
|
||||
gen = (1..max).each
|
||||
loop do
|
||||
gen.next
|
||||
end
|
||||
else
|
||||
require 'generator'
|
||||
gen = Generator.new((0..max))
|
||||
while gen.next?
|
||||
gen.next
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue