Re: with-open binding form

2008-10-13 Thread Allen Rohner
> I noticed with-open kind of stuck out because it doesn't use vectors > for binding like let, loop, and others. I had a similar comment about doseq. I don't think the obstacle is the technical challenge, but rather Rich's decision about whether to do it or not. This would be a breaking change, o

with-open binding form

2008-10-13 Thread Kevin Downey
I noticed with-open kind of stuck out because it doesn't use vectors for binding like let, loop, and others. it was a quick fix using destructuring to make the macro use square backets example: (with-open [f (new java.io.FileWriter "test")] do-stuff) but as I was writing an email to this list I r