method
select
v7.1.3.4 -
Show latest stable
- Class:
ActiveSupport::HashWithIndifferentAccess
select(*args, &block)public
No documentation available.
# File activesupport/lib/active_support/hash_with_indifferent_access.rb, line 327
def select(*args, &block)
return to_enum(:select) unless block_given?
dup.tap { |hash| hash.select!(*args, &block) }
end