Re: Help with primer on maps, lists or vectors

2011-06-02 Thread MohanR
Atlas is a really useful way to look up information. It even shows the source !! Thanks, Mohan On Jun 1, 4:44 pm, Ambrose Bonnaire-Sergeant wrote: > Hi Mohan, > > If you are exploring the Clojure landscape may I recommend Clojure Atlas. > > http://www.clojureatlas.com/org.clojure:clojure:1.2.0?g

Re: Help with primer on maps, lists or vectors

2011-06-02 Thread Devin Walters
+1 on the atlas. It's a great way to "surf" clojure. I paid for it not knowing if I'd use it, but the organization is great and would feel comfortable recommending it to a wide range of people interested in clojure. Sent via mobile On Jun 1, 2011, at 6:44 AM, Ambrose Bonnaire-Sergeant wrote:

Re: Help with primer on maps, lists or vectors

2011-06-02 Thread Stuart Halloway
Sean, Well said. Just bought my subscription. Stu > On Wed, Jun 1, 2011 at 5:51 PM, Ken Wesson wrote: >> On Wed, Jun 1, 2011 at 10:06 AM, Ambrose Bonnaire-Sergeant >> wrote: >>> Just to be clear, I linked to an unlimited time, free (cost), non-crippled >>> demo. >> Er, if such a thing exists,

Re: Help with primer on maps, lists or vectors

2011-06-01 Thread MohanR
Those were useful ideas. I will read up more. But the thread got hijacked. -- 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 patie

Re: Re: Help with primer on maps, lists or vectors

2011-06-01 Thread Sean Corfield
On Wed, Jun 1, 2011 at 5:51 PM, Ken Wesson wrote: > On Wed, Jun 1, 2011 at 10:06 AM, Ambrose Bonnaire-Sergeant > wrote: >> Just to be clear, I linked to an unlimited time, free (cost), non-crippled >> demo. > Er, if such a thing exists, why would anyone pay at the tollbooth? As if we haven't spe

Re: Re: Help with primer on maps, lists or vectors

2011-06-01 Thread Ken Wesson
On Wed, Jun 1, 2011 at 10:06 AM, Ambrose Bonnaire-Sergeant wrote: > Just to be clear, I linked to an unlimited time, free (cost), non-crippled > demo. Ah. Er, if such a thing exists, why would anyone pay at the tollbooth? -- Protege: What is this seething mass of parentheses?! Master: Your fat

Re: Re: Help with primer on maps, lists or vectors

2011-06-01 Thread Ambrose Bonnaire-Sergeant
On Wed, Jun 1, 2011 at 9:09 PM, Ken Wesson wrote: > On Wed, Jun 1, 2011 at 8:33 AM, Meikel Brandmeyer wrote: > > > > Am Mittwoch, 1. Juni 2011 13:50:15 UTC+2 schrieb Ken Wesson: > >> > >> Isn't that site behind a paywall? > > > > And? > > And, it's a bit of a bait-and-switch for someone to sugge

Re: Re: Help with primer on maps, lists or vectors

2011-06-01 Thread Ken Wesson
On Wed, Jun 1, 2011 at 8:33 AM, Meikel Brandmeyer wrote: > > Am Mittwoch, 1. Juni 2011 13:50:15 UTC+2 schrieb Ken Wesson: >> >> Isn't that site behind a paywall? > > And? And, it's a bit of a bait-and-switch for someone to suggest it to somebody without mentioning that fact. I, for one, absolutel

Aw: Re: Help with primer on maps, lists or vectors

2011-06-01 Thread Meikel Brandmeyer
Am Mittwoch, 1. Juni 2011 13:50:15 UTC+2 schrieb Ken Wesson: > > Isn't that site behind a paywall? And? -- 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

Re: Help with primer on maps, lists or vectors

2011-06-01 Thread Ambrose Bonnaire-Sergeant
On Wed, Jun 1, 2011 at 7:50 PM, Ken Wesson wrote: > On Wed, Jun 1, 2011 at 7:44 AM, Ambrose Bonnaire-Sergeant > wrote: > > Hi Mohan, > > If you are exploring the Clojure landscape may I recommend Clojure Atlas. > > http://www.clojureatlas.com/org.clojure:clojure:1.2.0?guest=t#ds/maps > > The cor

Re: Help with primer on maps, lists or vectors

2011-06-01 Thread Ken Wesson
On Wed, Jun 1, 2011 at 7:44 AM, Ambrose Bonnaire-Sergeant wrote: > Hi Mohan, > If you are exploring the Clojure landscape may I recommend Clojure Atlas. > http://www.clojureatlas.com/org.clojure:clojure:1.2.0?guest=t#ds/maps > The core functions provided with Clojure are grouped by concept. Just t

Re: Help with primer on maps, lists or vectors

2011-06-01 Thread Ambrose Bonnaire-Sergeant
Hi Mohan, If you are exploring the Clojure landscape may I recommend Clojure Atlas. http://www.clojureatlas.com/org.clojure:clojure:1.2.0?guest=t#ds/maps The core functions provided with Clojure are grouped by concept. Just type a new subject into the search box. If you are trying to find a par

Aw: Help with primer on maps, lists or vectors

2011-06-01 Thread Meikel Brandmeyer
Hi, there are various ways to retrieve the value: (def m {:x 1, :y {"a" "b"}, :z #}) Useful if m might be nil: (get m :z) (get m :z some-default-if-not-found) If you know m is always non-nil the following is sometimes useful eg. with other HOFs like map etc. (m :z) (m :z some-default-if-not-fo

Help with primer on maps, lists or vectors

2011-06-01 Thread MohanR
How do I retrieve :z from this map? I've tried (val (find (...)) but I am still learning the ropes. Maybe a primer on maps, lists or vectors will help me. I use Java. I know that there is a String[] object. {:x 1, :y {"a" "b"}, :z #} Thanks, Mohan -- You received this message because you are