Class: HashWithIndifferentAccess

Inherits:
Hash show all
Defined in:
lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb

Instance Method Summary collapse

Methods inherited from Hash

#assert_valid_keys, #symbolize_keys!

Constructor Details

#initialize(constructor = {}) ⇒ HashWithIndifferentAccess

Returns a new instance of HashWithIndifferentAccess.



53
54
55
56
57
58
59
60
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 53

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"


78
79
80
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 78

def []=(key, value)
  regular_writer(convert_key(key), convert_value(value))
end

#default(key = nil) ⇒ Object



62
63
64
65
66
67
68
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 62

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.



152
153
154
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 152

def delete(key)
  super(convert_key(key))
end

#dupObject

Returns an exact copy of the hash.



131
132
133
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 131

def dup
  HashWithIndifferentAccess.new(self)
end

#extractable_options?Boolean

Returns:

  • (Boolean)


49
50
51
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 49

def extractable_options?
  true
end

#fetch(key, *extras) ⇒ Object

Fetches the value for the specified key, same as doing hash



115
116
117
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 115

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

Returns:

  • (Boolean)


106
107
108
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 106

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.



137
138
139
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 137

def merge(hash)
  self.dup.update(hash)
end

#regular_updateObject



71
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 71

alias_method :regular_update, :update

#regular_writerObject



70
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 70

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.



143
144
145
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 143

def reverse_merge(other_hash)
  super other_hash.with_indifferent_access
end

#reverse_merge!(other_hash) ⇒ Object



147
148
149
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 147

def reverse_merge!(other_hash)
  replace(reverse_merge( other_hash ))
end

#stringify_keysObject



157
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 157

def stringify_keys; dup end

#stringify_keys!Object



156
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 156

def stringify_keys!; self end

#symbolize_keysObject



159
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 159

def symbolize_keys; to_hash.symbolize_keys end

#to_hashObject

Convert to a Hash with String keys.



163
164
165
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 163

def to_hash
  Hash.new(default).merge!(self)
end

#to_options!Object



160
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 160

def to_options!; 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!"}


92
93
94
95
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 92

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"]


126
127
128
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 126

def values_at(*indices)
  indices.collect {|key| self[convert_key(key)]}
end