Well, I had a very quick go at this; getting it to work simply is,
actually, remarkable easy.
(defmethod emit-pattern clojure.lang.IPersistentSet [pat]
pat)
(defmethod to-source clojure.lang.IPersistentSet [pat ocr]
`(every? identity (map #(contains? ~ocr %) ~pat)))
I'm guessing that this i
Best reasons of all!
David Nolen writes:
> The only reason it's not currently in there is I've never considered it.
> The reason I have no near terms plans for it, lack of time.
>
> On Friday, October 11, 2013, Phillip Lord wrote:
>
>>
>> Just out of curiosity why? Or am I just wierd in wantin
The only reason it's not currently in there is I've never considered it.
The reason I have no near terms plans for it, lack of time.
On Friday, October 11, 2013, Phillip Lord wrote:
>
> Just out of curiosity why? Or am I just wierd in wanting this?
>
> I'll have a look, and see if I can offer a p
Just out of curiosity why? Or am I just wierd in wanting this?
I'll have a look, and see if I can offer a patch, though.
Phil
David Nolen writes:
> There's currently no support for matching sets and I have no plans in the
> near future. Patch welcome, it could be matched and optimized similar
There's currently no support for matching sets and I have no plans in the
near future. Patch welcome, it could be matched and optimized similarly to
map matching.
On Thursday, October 10, 2013, Phillip Lord wrote:
>
> I've been playing with core.match recently. One thing that I am confused
> abou