# File lib/nanoc/base/ordered_hash.rb, line 152
    def select
        ary = []
        each { |k,v| ary << [k,v] if yield k,v }
        ary
    end