method
dig
rails latest stable - Class:
ActiveSupport::HashWithIndifferentAccess
dig(*args)public
Same as Hash#dig where the key passed as argument can be either a string or a symbol:
counters = ActiveSupport::HashWithIndifferentAccess.new counters[:foo] = { bar: 1 } counters.dig('foo', 'bar') # => 1 counters.dig(:foo, :bar) # => 1 counters.dig(:zoo) # => nil