default(*args) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/hash_with_indifferent_access.rb, line 71
    def default(*args)
      arg_key = args.first

      if include?(key = convert_key(arg_key))
        self[key]
      else
        super
      end
    end
Register or log in to add new notes.