So I was porting some gamma meander to epsilon and it seems like gamma used to support ~@
but epsilon does not, can I still do the thing some other way?
{:as ?m}
('and ~@(second (unravel-pattern ?m)))
is what I’m trying to port@timothypratley We should support ~@
but I’m working on an Asami ticket at the moment.
In that case I think you should be able to write
('and & ~(second (unravel-pattern ?m)))
Later today I’ll see what is required to add ~@
.🙂 oh cool. No rush! 🙂
Did that work?