Results 166 comments of Ben Sless

Thank you for helping me get back into context :) Now I see the justification for the parser, and then obviously read-values could be implemented with it to avoid duplication....

@Deraen digging through Jackson's API, it should be possible to get the parser from the `MappingIterator` returned from `readValues`, letting us drop that piece of code. Also, my memory worked...

Alright, where does it leave us with regards to everything else? What do you think about the relation between `readValues` and the parser? It seems to me like the should...

This adds support for reading and writing large sequences without materializing them in memory. Few choices I made I'm not sure about: - using `.writeValuesAsArray` and not `writeValues`, but I...

@ikitommi do you know why the work flow failed when setting up the environment? The error is from `tar`, of all things. Did I do something wrong or does it...

@Deraen, thanks for giving it a look `read-values` is just for reading to level Array elements, as it's the context in which I considered streaming. I don't know if maps...

@Deraen not exposing a seq api over `read-values` was intentional. It returns something very similar to an Education. A user can always transform it to a lazy-seq and get everything...

I'll gladly give it a shot and report the results back. Thanks!

Hi, I tested it in Clojure 1.8 and got ``` Caused by: java.io.FileNotFoundException: Could not locate clojure/tools/reader/impl/ExceptionInfo__init.class or clojure/tools/reader/impl/ExceptionInfo.clj on classpath. ``` I also tried adding the reader as a...

I'll recreate it, but I verified that it worked for me as intended by the following steps: - open new emacs instance. - don't open any clojure file. - open...