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
require 'benchmark/ips'
def fast
end
def slow
end
Benchmark.ips do |x|
x.report('fast') { fast }
x.report('slow') { slow }
x.compare!
end
and reorganize all stuff according to 👆 👆 👆
Since x.compare! will show fast then slow, this may have a better reading experience when reading README IMO. Also document in CONTRIBUTING.md to give people notice when submits a new entry.
The text was updated successfully, but these errors were encountered:
Update template:
and reorganize all stuff according to 👆 👆 👆
Since
x.compare!
will show fast then slow, this may have a better reading experience when reading README IMO. Also document in CONTRIBUTING.md to give people notice when submits a new entry.The text was updated successfully, but these errors were encountered: