# File lib/bson/support/hash_with_indifferent_access.rb, line 29 def initialize(constructor = {}) if constructor.is_a?(Hash) super() update(constructor) else super(constructor) end end
# File lib/bson/support/hash_with_indifferent_access.rb, line 46 def self.new_from_hash_copying_default(hash) ActiveSupport::HashWithIndifferentAccess.new(hash).tap do |new_hash| new_hash.default = hash.default end end
Assigns a new value to the hash:
hash = HashWithIndifferentAccess.new hash[:key] = "value"
# File lib/bson/support/hash_with_indifferent_access.rb, line 60 def []=(key, value) regular_writer(convert_key(key), convert_value(value)) end
# File lib/bson/support/hash_with_indifferent_access.rb, line 38 def default(key = nil) if key.is_a?(Symbol) && include?(key = key.to_s) self[key] else super end end
Removes a specified key from the hash.
# File lib/bson/support/hash_with_indifferent_access.rb, line 134 def delete(key) super(convert_key(key)) end
Returns an exact copy of the hash.
# File lib/bson/support/hash_with_indifferent_access.rb, line 113 def dup HashWithIndifferentAccess.new(self) end
# File lib/bson/support/hash_with_indifferent_access.rb, line 25 def extractable_options? true end
Fetches the value for the specified key, same as doing hash
# File lib/bson/support/hash_with_indifferent_access.rb, line 97 def fetch(key, *extras) super(convert_key(key), *extras) end
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
# File lib/bson/support/hash_with_indifferent_access.rb, line 88 def key?(key) super(convert_key(key)) end
Merges the instantized and the specified hashes together, giving precedence to the values from the second hash Does not overwrite the existing hash.
# File lib/bson/support/hash_with_indifferent_access.rb, line 119 def merge(hash) self.dup.update(hash) end
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.
# File lib/bson/support/hash_with_indifferent_access.rb, line 125 def reverse_merge(other_hash) super self.class.new_from_hash_copying_default(other_hash) end
# File lib/bson/support/hash_with_indifferent_access.rb, line 129 def reverse_merge!(other_hash) replace(reverse_merge( other_hash )) end
# File lib/bson/support/hash_with_indifferent_access.rb, line 139 def stringify_keys; dup end
# File lib/bson/support/hash_with_indifferent_access.rb, line 138 def stringify_keys!; self end
# File lib/bson/support/hash_with_indifferent_access.rb, line 140 def symbolize_keys; to_hash.symbolize_keys end
Convert to a Hash with String keys.
# File lib/bson/support/hash_with_indifferent_access.rb, line 144 def to_hash Hash.new(default).merge!(self) end
# File lib/bson/support/hash_with_indifferent_access.rb, line 141 def to_options!; self end
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!"}
# File lib/bson/support/hash_with_indifferent_access.rb, line 74 def update(other_hash) other_hash.each_pair { |key, value| regular_writer(convert_key(key), convert_value(value)) } self end
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"]
# File lib/bson/support/hash_with_indifferent_access.rb, line 108 def values_at(*indices) indices.collect {|key| self[convert_key(key)]} end
# File lib/bson/support/hash_with_indifferent_access.rb, line 149 def convert_key(key) key.kind_of?(Symbol) ? key.to_s : key end
# File lib/bson/support/hash_with_indifferent_access.rb, line 153 def convert_value(value) case value when Hash self.class.new_from_hash_copying_default(value) when Array value.collect { |e| e.is_a?(Hash) ? self.class.new_from_hash_copying_default(e) : e } else value end end