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