Created
October 13, 2014 13:43
-
-
Save britishtea/5836046e747866d876e7 to your computer and use it in GitHub Desktop.
String#=~ vs String#include? vs String#[]
This file contains 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
Benchmark.ips do |x| | |
x.report { x="str"; x =~ /foo/ || x =~ /bar/ } | |
x.report { x="str"; x.include?("foo") || x.include?("bar") } | |
x.report { x="str"; x["foo"] || x["bar"] } | |
end |
This file contains 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
Calculating ------------------------------------- | |
25880 i/100ms | |
31953 i/100ms | |
32632 i/100ms | |
------------------------------------------------- | |
583736.1 (±5.3%) i/s - 2924440 in 5.025143s | |
775976.0 (±15.7%) i/s - 3642642 in 5.065275s | |
778926.8 (±10.5%) i/s - 3850576 in 5.010336s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment