# File lib/hashery/dictionary.rb, line 543
    def first(x=nil)
      return @hash[order.first] unless x
      order.first(x).collect { |k| @hash[k] }
    end