If I already have a hash, can I make it so that
h[:foo] h[\'foo\']
are the same? (is this called indifferent access?)
The details: I
If you have a hash already, you can do:
HashWithIndifferentAccess.new({'a' => 12})[:a]