Sha256: db240a3ca65fadbdbe82f410d19b1a61251bb03f33f9e12c8a5563ffd28f50a9

Contents?: true

Size: 492 Bytes

Versions: 156

Compression:

Stored size: 492 Bytes

Contents

require 'rubygems'
require 'tach'

data = ["some", "var", "goes", "in", :here, 0]
Tach.meter(1_000_000) do
  tach('for') do
    for element in data
      element == nil
    end
  end
  tach('each') do
    data.each do |element|
      element == nil
    end
  end
end

# ruby 1.8.7 (2009-06-12 patchlevel 174) [universal-darwin10.0]
# 
# +------+----------+
# | tach | total    |
# +------+----------+
# | for  | 2.958672 |
# +------+----------+
# | each | 2.983550 |
# +------+----------+
# 

Version data entries

156 entries across 154 versions & 6 rubygems

Version Path
excon-0.20.1 benchmarks/for_vs_array_each.rb
excon-0.20.0 benchmarks/for_vs_array_each.rb
excon-0.19.5 benchmarks/for_vs_array_each.rb
excon-0.19.4 benchmarks/for_vs_array_each.rb
excon-0.19.3 benchmarks/for_vs_array_each.rb
excon-0.19.2 benchmarks/for_vs_array_each.rb
excon-0.19.1 benchmarks/for_vs_array_each.rb
excon-0.19.0 benchmarks/for_vs_array_each.rb
excon-0.18.5 benchmarks/for_vs_array_each.rb
excon-0.18.4 benchmarks/for_vs_array_each.rb
excon-0.18.3 benchmarks/for_vs_array_each.rb
excon-0.18.2 benchmarks/for_vs_array_each.rb
excon-0.18.1 benchmarks/for_vs_array_each.rb
excon-0.18.0 benchmarks/for_vs_array_each.rb
excon-0.17.0 benchmarks/for_vs_array_each.rb
excon-0.16.10 benchmarks/for_vs_array_each.rb
excon-0.16.9 benchmarks/for_vs_array_each.rb
excon-0.16.8 benchmarks/for_vs_array_each.rb
excon-0.16.7 benchmarks/for_vs_array_each.rb
excon-0.16.5 benchmarks/for_vs_array_each.rb