On Monday, December 31, 2012 3:13:42 AM UTC+11, Huey Petersen wrote:
>
>
> 2) Is there a good way of doing this with nested maps? An example:
>
> { :user { :first "John" :last "Doe" :dob { :month 12 :day 30 :year 2012
> :garbage "asdf" } } }
>
> I would want to make sure :dob only contains keys
On 12/31/2012 04:52 AM, clojure@googlegroups.com wrote:
2) Is there a good way of doing this with nested maps? An example:
{ :user { :first "John" :last "Doe" :dob { :month 12 :day 30 :year 2012
:garbage "asdf" } } }
I would want to make sure :dob only contains keys :month, :day, :year.
Hi th