Skip to content

Instantly share code, notes, and snippets.

@maxjustus
Created February 2, 2012 16:25
Show Gist options
  • Save maxjustus/1724372 to your computer and use it in GitHub Desktop.
Save maxjustus/1724372 to your computer and use it in GitHub Desktop.
Hash with symbol to string lookup
opts = {'meep' => 'feep', :derp => 'herp'}
opts.default_proc = ->(h,k) { h.fetch(k.to_s) { nil } }
opts[:meep]
=> 'feep'
opts['derp']
=> 'herp'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment