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