# File lib/dm-chunked_query/chunks.rb, line 75
      def first(n=1)
        if n >= 0
          chunk_at(0,n)
        else
          raise(ArgumentError,"negative array size")
        end
      end