David

Thanks. Nice design!

(extend-type java.util.HashMap
  ma/IMatchLookup
   (val-at* [this k not-found]
            (or (.get this k) not-found)))

2011/12/13 David Nolen <dnolen.li...@gmail.com>:
> You can extend-type to IMatchLookup.
>
> David
>
>
> On Mon, Dec 12, 2011 at 10:56 AM, Takahiro Hozumi <fat...@googlemail.com>
> wrote:
>>
>> Hi,
>>
>> I'd like to use core.match with java.util.HashMap without converting
>> into {}.
>> The core.match doesn't support it as below.
>>
>> (let [m (java.util.HashMap. {"a" 1})]
>>    (match m
>>               {"a" 1} true))
>> ;=> nil
>>
>> Is it difficult?
>> Thanks.
>>
>> --
>> 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 first post.
>> To unsubscribe from this group, send email to
>> clojure+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/clojure?hl=en
>
>
> --
> 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
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en

-- 
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 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to