Nice work !!!
On Sunday, March 29, 2015 at 1:46:33 AM UTC+8, Bozhidar Batsov wrote:
>
> Hey everyone,
>
> Just wanted to let you know that the most requested feature for CIDER (a
> debugger, in case you're wondering) has just landed in the master branch (
> https://github.com/clojure-emacs/cider/
(into [] coll) :a
> "Elapsed time: 16224.79319 msecs"
> nil
>
On Friday, February 7, 2014 9:26:05 PM UTC-8, puzzler wrote:
>
> On Fri, Feb 7, 2014 at 9:08 PM, Travis Moy
> > wrote:
>
>> Surprisingly it looks like (concat coll '(:a)) is faster than (co
You should use a vector, but it's also possible to use concat. For example,
(concat '(1 2 3) [4]) will give you (1 2 3 4).
This made me curious as to the best way to get a collection into vector, so
I played around with it some:
user=> (def r 10)
> #'user/r
> user=> (def coll (range 1))
orth it's trivial
> to produce a grammar which can _parse_ valid clojure code. _Reading_
> clojure code from such a parse tree is and should be an entirely seperate
> concern, implemented as a pass over the generated parse structure.
>
> - Reid
>
> On Thursday, February
I'm trying to use instaparse to parse Clojure code so that I can reformat
it, but I'm having an issue with how to handle special forms. Should I
attempt to parse special forms such as let and defn into their own rules,
or should I rely instead on the actual content of the terminal to determine