Class: HashWithIndifferentAccess
- Defined in:
- lib/framework/indifferent_access.rb,
lib/framework/autocomplete/HashWithIndifferentAccess.rb
Overview
It is auto-generated content. Do not do required for this file in your application.
Instance Method Summary collapse
-
#[]=(key, value) ⇒ Object
Assigns a new value to the hash:.
- #convert_key(key) ⇒ Object
- #convert_value(value) ⇒ Object
- #default(key) ⇒ Object
-
#delete(key) ⇒ Object
Removes a specified key from the hash.
-
#dup ⇒ Object
Returns an exact copy of the hash.
-
#fetch(key, extras) ⇒ Object
Fetches the value for the specified key, same as doing hash.
-
#has_key?(key) ⇒ Boolean
Checks the hash for a key matching the argument passed in:.
-
#include?(key) ⇒ Boolean
Checks the hash for a key matching the argument passed in:.
-
#initialize(constructor = {}) ⇒ HashWithIndifferentAccess
constructor
A new instance of HashWithIndifferentAccess.
-
#key?(key) ⇒ Boolean
Checks the hash for a key matching the argument passed in:.
-
#member?(key) ⇒ Boolean
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.
-
#merge!(other_hash) ⇒ Object
Updates the instantized hash with values from the second:.
-
#regular_update(req) ⇒ Object
unless method_defined?(:regular_update).
-
#regular_writer(req, req1) ⇒ Object
unless method_defined?(:regular_writer).
- #stringify_keys! ⇒ Object
- #symbolize_keys! ⇒ Object
-
#to_hash ⇒ Object
Convert to a Hash with String keys.
- #to_options! ⇒ Object
-
#update(other_hash) ⇒ Object
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
#each, #each_key, #each_value, #empty?, #fetch_r, #index, #inspect, #invert, #pretty_print, #pretty_print_cycle, #replace, #reverse_merge, #reverse_merge!, #stringify_keys, #symbolize_keys, #to_a, #with_indifferent_access
Constructor Details
#initialize(constructor = {}) ⇒ HashWithIndifferentAccess
Returns a new instance of HashWithIndifferentAccess.
6 7 8 9 10 11 12 13 |
# File 'lib/framework/indifferent_access.rb', line 6 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"
31 32 33 |
# File 'lib/framework/indifferent_access.rb', line 31 def []=(key, value) regular_writer(convert_key(key), convert_value(value)) end |
#convert_key(key) ⇒ Object
109 110 111 |
# File 'lib/framework/indifferent_access.rb', line 109 def convert_key(key) key.kind_of?(Symbol) ? key.to_s : key end |
#convert_value(value) ⇒ Object
113 114 115 116 117 118 119 120 121 122 |
# File 'lib/framework/indifferent_access.rb', line 113 def convert_value(value) case value when Hash value.with_indifferent_access when Array value.collect { |e| e.is_a?(Hash) ? e.with_indifferent_access : e } else value end end |
#default(key) ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/framework/indifferent_access.rb', line 15 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.
95 96 97 |
# File 'lib/framework/indifferent_access.rb', line 95 def delete(key) super(convert_key(key)) end |
#dup ⇒ Object
Returns an exact copy of the hash.
84 85 86 |
# File 'lib/framework/indifferent_access.rb', line 84 def dup HashWithIndifferentAccess.new(self) end |
#fetch(key, extras) ⇒ Object
Fetches the value for the specified key, same as doing hash
68 69 70 |
# File 'lib/framework/indifferent_access.rb', line 68 def fetch(key, *extras) super(convert_key(key), *extras) end |
#has_key?(key) ⇒ Boolean
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
64 65 66 |
# File 'lib/framework/indifferent_access.rb', line 64 def key?(key) super(convert_key(key)) end |
#include?(key) ⇒ Boolean
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
63 64 65 |
# File 'lib/framework/indifferent_access.rb', line 63 def key?(key) super(convert_key(key)) end |
#key?(key) ⇒ Boolean
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
59 60 61 |
# File 'lib/framework/indifferent_access.rb', line 59 def key?(key) super(convert_key(key)) end |
#member?(key) ⇒ Boolean
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
65 66 67 |
# File 'lib/framework/indifferent_access.rb', line 65 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.
90 91 92 |
# File 'lib/framework/indifferent_access.rb', line 90 def merge(hash) self.dup.update(hash) end |
#merge!(other_hash) ⇒ Object
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!"}
50 51 52 53 |
# File 'lib/framework/indifferent_access.rb', line 50 def update(other_hash) other_hash.each_pair { |key, value| regular_writer(convert_key(key), convert_value(value)) } self end |
#regular_update(req) ⇒ Object
unless method_defined?(:regular_update)
24 |
# File 'lib/framework/indifferent_access.rb', line 24 alias_method :regular_update, :update |
#regular_writer(req, req1) ⇒ Object
unless method_defined?(:regular_writer)
23 |
# File 'lib/framework/indifferent_access.rb', line 23 alias_method :regular_writer, :[]= |
#stringify_keys! ⇒ Object
99 |
# File 'lib/framework/indifferent_access.rb', line 99 def stringify_keys!; self end |
#symbolize_keys! ⇒ Object
100 |
# File 'lib/framework/indifferent_access.rb', line 100 def symbolize_keys!; self end |
#to_hash ⇒ Object
Convert to a Hash with String keys.
104 105 106 |
# File 'lib/framework/indifferent_access.rb', line 104 def to_hash Hash.new(default).merge(self) end |
#to_options! ⇒ Object
101 |
# File 'lib/framework/indifferent_access.rb', line 101 def ; self end |
#update(other_hash) ⇒ Object
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!"}
45 46 47 48 |
# File 'lib/framework/indifferent_access.rb', line 45 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"]
79 80 81 |
# File 'lib/framework/indifferent_access.rb', line 79 def values_at(*indices) indices.collect {|key| self[convert_key(key)]} end |