fastruby / fast-ruby

:dash: Writing Fast Ruby :heart_eyes: -- Collect Common Ruby idioms.
https://github.com/fastruby/fast-ruby
5.67k stars 376 forks source link

Add array << vs push benchmark #34

Closed novokshonovi closed 9 years ago

novokshonovi commented 9 years ago

Add array << vs push benchmark

gogainda commented 9 years ago

just done simple test, these methods seem identical concerning time measurements

JuanitoFatas commented 9 years ago

For pushing single element, << can be slightly faster than push. Maybe not worth documented. Thanks @novokshonovi for opened this issue, and thanks @gogainda's comment.