Re: Merry Christmas Everybody

2012-12-25 Thread Manuel Paccagnella
Merry Christmas to you Simone, and to everyone here. I don't post much, but I'm enjoying programming in Clojure and I find this community to be very open, welcoming and generally a joy to be involved with. That you! Il giorno martedì 25 dicembre 2012 00:11:58 UTC+1, Simone Mosciatti ha

Re: inserting code into reify methods

2012-12-25 Thread nkonovalov
Thanks, that implementation is just what i was searching for. понедельник, 24 декабря 2012 г., 21:17:11 UTC+4 пользователь juan.facorro написал: Here's a possible implementation: (ns macro-test (:require [clojure.pprint :as p])) (defn get-args-index [x] (first (filter identity

Re: inserting code into reify methods

2012-12-25 Thread nkonovalov
Thanks, that implementation is just what i was searching for. -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your

Re: [ANN] Jida - Explore Clojure projects via hosted Codeq

2012-12-25 Thread Denis Labaye
On Sat, Dec 22, 2012 at 9:08 PM, Sean Grove s...@cloudfuji.com wrote: Hey all, Wei and I put together Jida, a pastie-bin for running Codeq/Datomic queries on Clojure repos. To dive in, here's a query that shows all of the authors for a given imported clojure repo (domina, in this case):

Re: Use repeat with a function argument

2012-12-25 Thread Stuart Sierra
`repeat` takes a value and returns a sequence of that value. There's another function, `repeatedly`, which takes a function and returns a sequence of values returned by calling that function. -S -- You received this message because you are subscribed to the Google Groups Clojure group. To