aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/range_count.yml
blob: 58f53a023613cc23d6f65d113ac4438fa417b251 (plain)
1
2
3
4
5
6
7
8
9
10
11
prelude: |
  r_1 = 1..1
  r_1k = 1..1000
  r_1m = 1..1000000
  r_str = 'a'..'z'

benchmark:
  'int 1': r_1.count
  'int 1K': r_1k.count
  'int 1M': r_1m.count
  string: r_str.count