# File lib/more/facets/dictionary.rb, line 369
  def select
    ary = []
    each { |k,v| ary << [k,v] if yield k,v }
    ary
  end