Class: ActiveSupport::HashWithIndifferentAccess
- Defined in:
- lib/active_support/hash_with_indifferent_access.rb
Instance Method Summary collapse
-
#[]=(key, value) ⇒ Object
Assigns a new value to the hash:.
- #default(key = nil) ⇒ Object
-
#delete(key) ⇒ Object
Removes a specified key from the hash.
-
#dup ⇒ Object
Returns an exact copy of the hash.
- #extractable_options? ⇒ Boolean
-
#fetch(key, *extras) ⇒ Object
Fetches the value for the specified key, same as doing hash.
-
#initialize(constructor = {}) ⇒ HashWithIndifferentAccess
constructor
A new instance of HashWithIndifferentAccess.
-
#key?(key) ⇒ Boolean
(also: #include?, #has_key?, #member?)
Checks the hash for a key matching the argument passed in:.
-
#merge(hash) ⇒ Object
Merges the instantized and the specified hashes together, giving precedence to the values from the second hash Does not overwrite the existing hash.
- #regular_update ⇒ Object
- #regular_writer ⇒ Object
-
#reverse_merge(other_hash) ⇒ Object
Performs the opposite of merge, with the keys and values from the first hash taking precedence over the second.
- #reverse_merge!(other_hash) ⇒ Object
- #stringify_keys ⇒ Object
- #stringify_keys! ⇒ Object
- #symbolize_keys ⇒ Object
-
#to_hash ⇒ Object
Convert to a Hash with String keys.
- #to_options! ⇒ Object
-
#update(other_hash) ⇒ Object
(also: #merge!)
Updates the instantized hash with values from the second:.
-
#values_at(*indices) ⇒ Object
Returns an array of the values at the specified indices:.
Methods inherited from Hash
#as_json, #assert_valid_keys, #deep_merge, #deep_merge!, #diff, #encode_json, #except, #except!, #extract!, from_xml, #slice, #slice!, #symbolize_keys!, #to_param, #to_xml, #with_indifferent_access
Constructor Details
#initialize(constructor = {}) ⇒ HashWithIndifferentAccess
Returns a new instance of HashWithIndifferentAccess.
13 14 15 16 17 18 19 20 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 13 def initialize(constructor = {}) if constructor.is_a?(Hash) super() update(constructor) else super(constructor) end end |
Instance Method Details
#[]=(key, value) ⇒ Object
Assigns a new value to the hash:
hash = HashWithIndifferentAccess.new
hash[:key] = "value"
38 39 40 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 38 def []=(key, value) regular_writer(convert_key(key), convert_value(value)) end |
#default(key = nil) ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 22 def default(key = nil) if key.is_a?(Symbol) && include?(key = key.to_s) self[key] else super end end |
#delete(key) ⇒ Object
Removes a specified key from the hash.
112 113 114 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 112 def delete(key) super(convert_key(key)) end |
#dup ⇒ Object
Returns an exact copy of the hash.
91 92 93 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 91 def dup HashWithIndifferentAccess.new(self) end |
#extractable_options? ⇒ Boolean
9 10 11 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 9 def true end |
#fetch(key, *extras) ⇒ Object
Fetches the value for the specified key, same as doing hash
75 76 77 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 75 def fetch(key, *extras) super(convert_key(key), *extras) end |
#key?(key) ⇒ Boolean Also known as: include?, has_key?, member?
Checks the hash for a key matching the argument passed in:
hash = HashWithIndifferentAccess.new
hash["key"] = "value"
hash.key? :key # => true
hash.key? "key" # => true
66 67 68 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 66 def key?(key) super(convert_key(key)) end |
#merge(hash) ⇒ Object
Merges the instantized and the specified hashes together, giving precedence to the values from the second hash Does not overwrite the existing hash.
97 98 99 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 97 def merge(hash) self.dup.update(hash) end |
#regular_update ⇒ Object
31 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 31 alias_method :regular_update, :update |
#regular_writer ⇒ Object
30 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 30 alias_method :regular_writer, :[]= |
#reverse_merge(other_hash) ⇒ Object
Performs the opposite of merge, with the keys and values from the first hash taking precedence over the second. This overloaded definition prevents returning a regular hash, if reverse_merge is called on a HashWithDifferentAccess.
103 104 105 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 103 def reverse_merge(other_hash) super other_hash.with_indifferent_access end |
#reverse_merge!(other_hash) ⇒ Object
107 108 109 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 107 def reverse_merge!(other_hash) replace(reverse_merge( other_hash )) end |
#stringify_keys ⇒ Object
117 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 117 def stringify_keys; dup end |
#stringify_keys! ⇒ Object
116 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 116 def stringify_keys!; self end |
#symbolize_keys ⇒ Object
119 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 119 def symbolize_keys; to_hash.symbolize_keys end |
#to_hash ⇒ Object
Convert to a Hash with String keys.
123 124 125 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 123 def to_hash Hash.new(default).merge!(self) end |
#to_options! ⇒ Object
120 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 120 def ; self end |
#update(other_hash) ⇒ Object Also known as: merge!
Updates the instantized hash with values from the second:
hash_1 = HashWithIndifferentAccess.new
hash_1[:key] = "value"
hash_2 = HashWithIndifferentAccess.new
hash_2[:key] = "New Value!"
hash_1.update(hash_2) # => {"key"=>"New Value!"}
52 53 54 55 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 52 def update(other_hash) other_hash.each_pair { |key, value| regular_writer(convert_key(key), convert_value(value)) } self end |
#values_at(*indices) ⇒ Object
Returns an array of the values at the specified indices:
hash = HashWithIndifferentAccess.new
hash[:a] = "x"
hash[:b] = "y"
hash.values_at("a", "b") # => ["x", "y"]
86 87 88 |
# File 'lib/active_support/hash_with_indifferent_access.rb', line 86 def values_at(*indices) indices.collect {|key| self[convert_key(key)]} end |