# File lib/merb-core/vendor/facets/dictionary.rb, line 365
  def select
    ary = []
    each { |k,v| ary << [k,v] if yield k,v }
    ary
  end