Add benchmark for hash small literals

Co-Authored-By: Krzysztof Rybka <krzysztof.rybka@gmail.com>

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66256 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tenderlove 2018-12-06 18:20:11 +00:00
Родитель ea921abdec
Коммит bf41340ebb
3 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,3 @@
# frozen_string_literal: true
1_000_000.times.map { { "foo" => "bar", "bar" => "baz" } }

Просмотреть файл

@ -0,0 +1,3 @@
# frozen_string_literal: true
1_000_000.times.map { { "foo" => "bar", "bar" => "baz", "baz" => "lol", "lol" => "lgtm" } }

Просмотреть файл

@ -0,0 +1,3 @@
# frozen_string_literal: true
1_000_000.times.map { { "foo" => "bar", "bar" => "baz", "baz" => "lol", "lol" => "lgtm", "lgtm" => "nope", "nope" => "ok", "ok" => "again", "again" => "wait" } }