summaryrefslogtreecommitdiff
path: root/benchmark/bm_hash_ident_num.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_hash_ident_num.rb')
-rw-r--r--benchmark/bm_hash_ident_num.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/benchmark/bm_hash_ident_num.rb b/benchmark/bm_hash_ident_num.rb
new file mode 100644
index 0000000000..b226736c6f
--- /dev/null
+++ b/benchmark/bm_hash_ident_num.rb
@@ -0,0 +1,4 @@
+h = {}.compare_by_identity
+nums = (1..26).to_a
+nums.each { |n| h[n] = n }
+200_000.times { nums.each { |n| h[n] } }