Methods
- #
-
- C
-
- D
-
- E
-
- F
-
- H
-
- I
-
- K
-
- M
-
- N
-
- R
-
- S
-
- T
-
- U
-
- V
-
- W
-
Class Public methods
Source:
show
| on GitHub
def initialize(constructor = {})
if constructor.is_a?(Hash)
super()
update(constructor)
else
super(constructor)
end
end
new_from_hash_copying_default(hash)
Source:
show
| on GitHub
def self.new_from_hash_copying_default(hash)
new(hash).tap do |new_hash|
new_hash.default = hash.default
end
end
Instance Public methods
Assigns a new value to the hash:
hash = HashWithIndifferentAccess.new
hash[:key] = "value"
Source:
show
| on GitHub
def []=(key, value)
regular_writer(convert_key(key), convert_value(value))
end
Source:
show
| on GitHub
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.
Source:
show
| on GitHub
def delete(key)
super(convert_key(key))
end
Returns an exact copy of the hash.
Source:
show
| on GitHub
def dup
self.class.new(self).tap do |new_hash|
new_hash.default = default
end
end
Always returns true, so that Array#extract_options!
finds
members of this class.
Fetches the value for the specified key, same as doing hash
Source:
show
| on GitHub
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
hash.key? "key"
Source:
show
| on GitHub
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.
Source:
show
| on GitHub
def merge(hash)
self.dup.update(hash)
end
nested_under_indifferent_access()
Source:
show
| on GitHub
def nested_under_indifferent_access
self
end
regular_update(other_hash)
regular_writer(key, value)
reverse_merge(other_hash)
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
.
Source:
show
| on GitHub
def reverse_merge(other_hash)
super self.class.new_from_hash_copying_default(other_hash)
end
reverse_merge!(other_hash)
Source:
show
| on GitHub
def reverse_merge!(other_hash)
replace(reverse_merge( other_hash ))
end
Source:
show
| on GitHub
def symbolize_keys; to_hash.symbolize_keys end
Source:
show
| on GitHub
def to_hash
Hash.new(default).merge!(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)
Source:
show
| on GitHub
def update(other_hash)
if other_hash.is_a? HashWithIndifferentAccess
super(other_hash)
else
other_hash.each_pair { |key, value| regular_writer(convert_key(key), convert_value(value)) }
self
end
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")
Source:
show
| on GitHub
def values_at(*indices)
indices.collect {|key| self[convert_key(key)]}
end
with_indifferent_access()
Instance Protected methods
Source:
show
| on GitHub
def convert_key(key)
key.kind_of?(Symbol) ? key.to_s : key
end
Source:
show
| on GitHub
def convert_value(value)
if value.is_a? Hash
value.nested_under_indifferent_access
elsif value.is_a?(Array)
value.dup.replace(value.map { |e| convert_value(e) })
else
value
end
end