Skip to content

Instantly share code, notes, and snippets.

@davorb
Created October 19, 2011 00:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davorb/1297201 to your computer and use it in GitHub Desktop.
Save davorb/1297201 to your computer and use it in GitHub Desktop.
mod vs and
# comparsion of most implementations
# https://gist.github.com/29e95a9efbd3d42326af
require "benchmark"
amount = 5_000_000
Benchmark.bm do |b|
b.report("MOD") do
amount.times do |i|
i%2 == 0
end
end
b.report("AND") do
amount.times do |i|
i&1 == 0
end
end
b.report("!MOD") do
amount.times do |i|
i%2 != 0
end
end
b.report("!AND") do
amount.times do |i|
i&1 == 1
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment