You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a << i is faster than a.push(e). I suspect it's because #push takes *args, and the overhead from that is relatively slower than <<, which takes a single arg.
a << i
is faster thana.push(e)
. I suspect it's because#push
takes*args
, and the overhead from that is relatively slower than<<
, which takes a single arg.benchmark.rb
The text was updated successfully, but these errors were encountered: