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.13.0 benchmarks/for_vs_array_each.rb
excon-0.12.0 benchmarks/for_vs_array_each.rb
excon-0.11.0 benchmarks/for_vs_array_each.rb
excon-0.10.1 benchmarks/for_vs_array_each.rb
excon-0.10.0 benchmarks/for_vs_array_each.rb
excon-0.9.6 benchmarks/for_vs_array_each.rb
excon-0.9.5 benchmarks/for_vs_array_each.rb
excon-0.9.4 benchmarks/for_vs_array_each.rb
excon-0.9.3 benchmarks/for_vs_array_each.rb
excon-0.9.2 benchmarks/for_vs_array_each.rb
excon-0.9.1 benchmarks/for_vs_array_each.rb
excon-0.9.0 benchmarks/for_vs_array_each.rb
excon-0.8.0 benchmarks/for_vs_array_each.rb
excon-0.7.12 benchmarks/for_vs_array_each.rb
excon-0.7.11 benchmarks/for_vs_array_each.rb
excon-0.7.10 benchmarks/for_vs_array_each.rb
excon-0.7.9 benchmarks/for_vs_array_each.rb
excon-0.7.8 benchmarks/for_vs_array_each.rb
excon-0.7.7 benchmarks/for_vs_array_each.rb
excon-0.7.6 benchmarks/for_vs_array_each.rb