I have a large JSON file (about 90MB) that contains an homogeneous array of objects. I am trying to write a Haskell program that reduces the values in the array. This seems like a good candidate for lazy evaluation - the program shouldn't have to read each object from the file until the previous object has been processed.I have a large JSON file (about 90MB) that cont