1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Benchmark for [Feature #16155]

This commit is contained in:
Nobuyoshi Nakada 2019-10-22 22:49:41 +09:00
parent 99ca5705a2
commit 8390057d1e
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -0,0 +1,14 @@
prelude: |
small1 = [1, 2, 3]
small2 = [1, 2, 3, 4, 5]
small3 = [2, 3, 4, 5]
small4 = [2]
big1 = [1, 2, 3, 4] * 64
big2 = [1, 2, 3] * 64
big3 = [1, 2] * 64
benchmark:
small-&: small1 & small2 & small3 & small4
small-intersection: small1.intersection(small2, small3, small4)
big-&: big1 & big2 & big3
big-intersection: big1.intersection(big2, big3)