method

select

select(*args, &block)
public

No documentation available.

# File activesupport/lib/active_support/ordered_hash.rb, line 33
    def select(*args, &block)
      dup.tap { |hash| hash.select!(*args, &block) }
    end