rubocop-performance icon indicating copy to clipboard operation
rubocop-performance copied to clipboard

Improve the `Performance/TimesMap` cop

Open ydakuka opened this issue 2 years ago • 1 comments

Describe the solution you'd like

# bad
(0..8).map { |i| i }
0.upto(8).map { |i| i }

# good
Array.new(9) { |i| i }

ydakuka avatar Dec 10 '23 11:12 ydakuka

https://github.com/fastruby/fast-ruby/pull/227

ydakuka avatar Dec 10 '23 11:12 ydakuka