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

14 lines
232 B
Ruby

def string_length(x)
x.report "length with ASCII" do
1000000.times do
$short_sentence_ascii.length
end
end
x.report "length with UTF8" do
1000000.times do
$short_sentence_utf8.length
end
end
end