Skip to content

Instantly share code, notes, and snippets.

@fsvehla
Created September 11, 2009 07:37
Show Gist options
  • Save fsvehla/185147 to your computer and use it in GitHub Desktop.
Save fsvehla/185147 to your computer and use it in GitHub Desktop.
irb(main):011:0> Benchmark.measure { 1_000_000.times { c = "0xdeadbeef"[0..0]; (c == 'D' || c == 'T') } }.real
=> 1.12148904800415
irb(main):012:0> Benchmark.measure { 1_000_000.times { "0xdeadbeef" =~ /^(D|T)/ } }.real
=> 0.670931100845337
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment