Files
RubyMotion/test/Benchmark/app/benchmark/string/to_f.rb
2013-11-17 14:53:26 +09:00

31 lines
510 B
Ruby

def string_to_f(x)
small_int = "5"
large_int = "14213542524"
small_float = "5.0"
large_float = "5415125422.0"
x.report "to_f with small integer" do
1000000.times do
small_int.to_f
end
end
x.report "to_f with large integer" do
1000000.times do
large_int.to_f
end
end
x.report "to_f with small float" do
1000000.times do
small_float.to_f
end
end
x.report "to_f with large float" do
1000000.times do
large_float.to_f
end
end
end