Class: Iqeo::HashWithIndifferentAccess
- Inherits:
-
Hash
- Object
- Hash
- Iqeo::HashWithIndifferentAccess
- Defined in:
- lib/iqeo/configuration/hash_with_indifferent_access.rb
Overview
from ActiveSupport 3.2.3 @ github.com/rails/rails/tree/3-2-stable/activesupport/lib/active_support did not want dependency on all of ActiveSupport
Class Method Summary (collapse)
Instance Method Summary (collapse)
-
- (Object) []=(key, value)
(also: #store)
Assigns a new value to the hash:.
- - (Object) default(key = nil)
-
- (Object) delete(key)
Removes a specified key from the hash.
-
- (Object) dup
Returns an exact copy of the hash.
-
- (Boolean) extractable_options?
Always returns true, so that Array#extract_options! finds members of this class.
-
- (Object) fetch(key, *extras)
Fetches the value for the specified key, same as doing hash.
-
- (HashWithIndifferentAccess) initialize(constructor = {})
constructor
A new instance of HashWithIndifferentAccess.
-
- (Boolean) key?(key)
(also: #include?, #has_key?, #member?)
Checks the hash for a key matching the argument passed in:.
-
- (Object) merge(hash)
Merges the instantized and the specified hashes together, giving precedence to the values from the second hash.
- - (Object) nested_under_indifferent_access
- - (Object) regular_update
- - (Object) regular_writer
-
- (Object) reverse_merge(other_hash)
Performs the opposite of merge, with the keys and values from the first hash taking precedence over the second.
- - (Object) reverse_merge!(other_hash)
- - (Object) stringify_keys
- - (Object) stringify_keys!
-
- (Object) symbolize_keys
undef :symbolize_keys! # was causing error in Iqeo::Configuration.
-
- (Object) to_hash
Convert to a Hash with String keys.
- - (Object) to_options!
-
- (Object) update(other_hash)
(also: #merge!)
Updates the instantized hash with values from the second:.
-
- (Object) values_at(*indices)
Returns an array of the values at the specified indices:.
- - (Object) with_indifferent_access
Constructor Details
- (HashWithIndifferentAccess) initialize(constructor = {})
A new instance of HashWithIndifferentAccess
22 23 24 25 26 27 28 29 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 22 def initialize(constructor = {}) if constructor.is_a?(Hash) super() update(constructor) else super(constructor) end end |
Class Method Details
+ (Object) new_from_hash_copying_default(hash)
39 40 41 42 43 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 39 def self.(hash) new(hash).tap do |new_hash| new_hash.default = hash.default end end |
Instance Method Details
- (Object) []=(key, value) Also known as: store
Assigns a new value to the hash:
hash = HashWithIndifferentAccess.new
hash[:key] = "value"
53 54 55 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 53 def []=(key, value) regular_writer(convert_key(key), convert_value(value)) end |
- (Object) default(key = nil)
31 32 33 34 35 36 37 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 31 def default(key = nil) if key.is_a?(Symbol) && include?(key = key.to_s) self[key] else super end end |
- (Object) delete(key)
Removes a specified key from the hash.
135 136 137 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 135 def delete(key) super(convert_key(key)) end |
- (Object) dup
Returns an exact copy of the hash.
112 113 114 115 116 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 112 def dup self.class.new(self).tap do |new_hash| new_hash.default = default end end |
- (Boolean) extractable_options?
Always returns true, so that Array#extract_options! finds members of this class.
10 11 12 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 10 def true end |
- (Object) fetch(key, *extras)
Fetches the value for the specified key, same as doing hash
96 97 98 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 96 def fetch(key, *extras) super(convert_key(key), *extras) end |
- (Boolean) key?(key) 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
87 88 89 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 87 def key?(key) super(convert_key(key)) end |
- (Object) merge(hash)
Merges the instantized and the specified hashes together, giving precedence to the values from the second hash. Does not overwrite the existing hash.
120 121 122 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 120 def merge(hash) self.dup.update(hash) end |
- (Object) nested_under_indifferent_access
18 19 20 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 18 def nested_under_indifferent_access self end |
- (Object) regular_update
46 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 46 alias_method :regular_update, :update |
- (Object) regular_writer
45 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 45 alias_method :regular_writer, :[]= |
- (Object) 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.
126 127 128 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 126 def reverse_merge(other_hash) super self.class.(other_hash) end |
- (Object) reverse_merge!(other_hash)
130 131 132 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 130 def reverse_merge!(other_hash) replace(reverse_merge( other_hash )) end |
- (Object) stringify_keys
140 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 140 def stringify_keys; dup end |
- (Object) stringify_keys!
139 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 139 def stringify_keys!; self end |
- (Object) symbolize_keys
undef :symbolize_keys! # was causing error in Iqeo::Configuration
142 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 142 def symbolize_keys; to_hash.symbolize_keys end |
- (Object) to_hash
Convert to a Hash with String keys.
146 147 148 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 146 def to_hash Hash.new(default).merge!(self) end |
- (Object) to_options!
143 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 143 def ; self end |
- (Object) update(other_hash) 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!"}
69 70 71 72 73 74 75 76 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 69 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 |
- (Object) values_at(*indices)
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"]
107 108 109 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 107 def values_at(*indices) indices.collect {|key| self[convert_key(key)]} end |
- (Object) with_indifferent_access
14 15 16 |
# File 'lib/iqeo/configuration/hash_with_indifferent_access.rb', line 14 def with_indifferent_access dup end |