Skip to content

Instantly share code, notes, and snippets.

@YumaInaura
Created December 18, 2018 08:28
Show Gist options
  • Select an option

  • Save YumaInaura/e5b80160b20aa15583c7471fdfbfd88e to your computer and use it in GitHub Desktop.

Select an option

Save YumaInaura/e5b80160b20aa15583c7471fdfbfd88e to your computer and use it in GitHub Desktop.
Rails ActiveSupport の HashWithIndifferentAccess って何? ref: https://qiita.com/YumaInaura/items/e652fb8ecdda38ab5569
HashWithIndifferentAccess.new(a: 1)['a']
=> 1
HashWithIndifferentAccess.new(a: 1)[:a]
=> 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment