class Hash

def with_indifferent_access

Experimental RBS support (using type sampling data from the type_fusion project).

def with_indifferent_access: () -> Hash

This signature was generated using 1 sample from 1 application.

{ a: 1 }.with_indifferent_access['a'] # => 1

Returns an ActiveSupport::HashWithIndifferentAccess out of its receiver:
def with_indifferent_access
  ActiveSupport::HashWithIndifferentAccess.new(self)
end