# File lib/facet/orderedhash.rb, line 230
    def select
        ary = []
        each { |k,v| ary << [k,v] if yield k,v }
        ary
    end