Performance

    Instead of slurping in all lines of a file and then working on the array with ,read in one line at a time with .

    The difference is that the reads the entire file into a temporary array, and the reads one at a time. For small files this may not matter, but for larger ones it may eat up all your available memory.


    Submit a PR to