meander

All things about https://github.com/noprompt/meander Need help and no one responded? Feel free to ping @U5K8NTHEZ
2021-03-19T18:23:45.008500Z

Hej all, I am matching on a rather large datastructure using search and $. I would like to try to optimize this a bit. Is there a way to short circuit sub structures under for instance specific keys that I know are not relevant?

noprompt 2021-03-19T19:07:23.008800Z

Not at the moment one thing you could try is

(keep (fn [x] (m/find x ,,,))
      (tree-seq branch? children root))

2021-03-19T19:13:35.009Z

Thanks. Will be messy do to the heterogeneity of the structure.