Created
October 30, 2014 15:24
-
-
Save ebouchut/da5846c1e92cedce3a02 to your computer and use it in GitHub Desktop.
Ruby Benchmark
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
require "benchmark" | |
array = [...] | |
Benchmark.bm(7) do |x| | |
x.report("map") { array.map(&:upcase) } | |
x.report("map!") { array.map!(&:upcase) } | |
end | |
# | |
# user system total real | |
# map 0.000000 0.000000 0.000000 ( 0.000014) | |
# map! 0.000000 0.000000 0.000000 ( 0.000012) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment