Mercurial users: clojure-contrib is on bitbucket

2008-09-24 Thread Shawn Hoover
http://www.bitbucket.org/shoover/clojure-contrib-mirror/overview/, for those who may want to use Mercurial to track contrib as Chouser spews JavaScript left and right so you don't have to. It syncs every 10 minutes. --Shawn --~--~-~--~~~---~--~~ You received this m

Re: Possible bug with accessing child classes

2008-09-24 Thread James Reeves
On Sep 24, 9:33 pm, ".Bill Smith" <[EMAIL PROTECTED]> wrote: > Try this: > > user=> (import '(java.util Map$Entry)) > nil > user=> Map$Entry > java.util.Map$Entry > user=> Perfect! Thanks! - James --~--~-~--~~~---~--~~ You received this message because you are sub

Re: Possible bug with accessing child classes

2008-09-24 Thread .Bill Smith
James, Try this: user=> (import '(java.util Map$Entry)) nil user=> Map$Entry java.util.Map$Entry user=> Bill --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to cl

Possible bug with accessing child classes

2008-09-24 Thread James Reeves
I'm having some problems accessing child classes in the latest release of Clojure: user=> (import '(java.util Map)) nil user=> Map java.util.Map user=> Map.Entry java.lang.ClassNotFoundException: Map.Entry user=> (import '(java.util.Map Entry)) java.lang.ClassNotFoundException: java.util.Map.Entr

Clojure: self hosting and .Net port?

2008-09-24 Thread soyrochus
Hi all, I have been playing with Clojure. Impressive indeed. I´ve got two questions. Please consider these to be idle speculation (and as such worthy of your attention) and no "feature requests". First, is there any intention to make Clojure self hosting? No technical barriers here, I guess, but

LazyMap and why Delegation is powerful

2008-09-24 Thread Meikel Brandmeyer
Dear Clojurians, I'd like to announce LazyMap2. LazyMap is to the map types, what lazy-cons is to sequences. - One may associate a value to a key in a lazy map by means of the lazy-assoc macro and the value does not get evaluated until it is accessed for the first time. - One can turn the l

Thoughts on gen-class

2008-09-24 Thread Meikel Brandmeyer
Dear Clojurians, after working some days with gen-class I've come up with some thoughts. - gen-class should require the namespace not the implementation file directly. The namespace is responsible to make the implementation available. As Rich stated in other threads: the namespace is the t