-
-
Save eregon/3062256 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Perfer.session "Array#sort" do |s| | |
s.bench "Array#sort" do |b| | |
b.description "Yeah sorting" | |
b.bench_code do |n| | |
ary = Array.new(n) { rand(n) } | |
b.measure do # mmh, should not be b here ideally | |
ary.sort | |
end | |
end | |
end | |
s.bench "Array#sort!" do |n| | |
b.description "Yeah sorting!" | |
b.bench_code do |n| | |
ary = Array.new(n) { rand(n) } | |
b.measure do | |
ary.sort! | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment