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