meander

noprompt 2021-08-24T20:09:45.079100Z

Reflection warning, meander/util/epsilon.cljc:714:24 - reference to field val can't be resolved.
AFAICT this is the only remaining warning as of the latest release.

noprompt 2021-08-24T20:10:17.079600Z

TBH I’m not sure how to get rid of this one. I’m gonna bug the guy who added the code. 🙂

2021-08-24T23:22:57.079900Z

Shouldn't this work?

(m/rewrite '[:a b c 1 2]
  [:a . (m/pred symbol? !xs) ... !rest ...]
  [!xs ...])

2021-08-24T23:24:31.080300Z

Or this?

(m/rewrite '[:a b c 1 2]
  [:a . (m/pred symbol? !xs) ... & ?rest]
  [!xs ...])