instance method
fetch_values
Ruby on Rails 7.0.10
Since v5.2.8.1Signature
fetch_values(*indices, &block)
Returns an array of the values at the specified indices, but also raises an exception when one of the keys can’t be found.
hash = ActiveSupport::HashWithIndifferentAccess.new hash[:a] = 'x' hash[:b] = 'y' hash.fetch_values('a', 'b') # => ["x", "y"] hash.fetch_values('a', 'c') { |key| 'z' } # => ["x", "z"] hash.fetch_values('a', 'c') # => KeyError: key not found: "c"
Parameters
-
indicesrest -
blockblock
Source
# File activesupport/lib/active_support/hash_with_indifferent_access.rb, line 244
def fetch_values(*indices, &block)
super(*indices.map { |key| convert_key(key) }, &block)
end
Defined in activesupport/lib/active_support/hash_with_indifferent_access.rb line 244
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::HashWithIndifferentAccess