meander

All things about https://github.com/noprompt/meander Need help and no one responded? Feel free to ping @U5K8NTHEZ
ikrimael 2020-07-23T06:15:12.157900Z

yeah. i'm a big believer in "stop forcing devs to play compiler/computer in their heads"

murtaza52 2020-07-23T09:18:38.160300Z

Given the code below -

(m/search [{:farm ""}
           {:farm "a"}
           {:farm ""}]
  (m/scan {:farm _ :as ?row})
  (assoc ?row :farm "b"))
Is there a better way to rewrite it, I am basically trying to substitute the :farm value for a given collection of hash-maps.

jimmy 2020-07-23T14:00:24.160400Z

Here are two other ways you could write this:

(m/rewrite [{:farm ""}
            {:farm "a"}
            {:farm ""}]
  [{:farm _ & !rest} ...]
  [{:farm "b" & !rest} ...])


(m/rewrites [{:farm ""}
             {:farm "a"}
             {:farm ""}]
   (m/scan {:farm _ & ?rest})
  {:farm "b" & ?rest})

murtaza52 2020-07-23T14:13:13.161900Z

(m/search [[{:a 1} {:c 3}] [{:b 2} {:d 5}]]
  (m/scan [{:as ?row}])
  (assoc ?row :z 1))
the above snippet does not work. I have a collection of collections of maps. In each map I want to add a k/v, how do I write it ?

murtaza52 2020-07-23T14:21:48.162400Z

(m/rewrites [[{:a 1} {:c 3}] [{:b 2} {:d 5}]]
  (m/scan (m/scan {& ?rest}))
  {:z 2 & ?rest})
The above adds the k/v, but doesnt maintain the coll structure, it concats all the collections together.

murtaza52 2020-07-23T14:22:35.162500Z

@jimmy thanks, let me try to wrap my head around rewrite/rewrites, when do I use it, it looks very similar to match/search ?

jimmy 2020-07-23T14:26:34.162700Z

So both rewrite and rewrites use m/subst on the right hand side. If you think about pattern matching as deconstructing values, substitution is the constructing of values. Basically it extends many of meanders features for creating things as well as matching on them. To make it concrete, instead of rewrites I could have just said:

(m/search [{:farm ""}
             {:farm "a"}
             {:farm ""}]
   (m/scan {:farm _ & ?rest})
  (m/subst
    {:farm "b" & ?rest}))

murtaza52 2020-07-23T14:28:32.162900Z

cool thanks

noprompt 2020-07-23T17:07:25.163300Z

(m/rewrite [[{:a 1} {:c 3}] [{:b 2} {:d 5}]]
  [(m/cata !xs) ...]
  [!xs ...]

  {:as ?it}
  {:z 2 & ?it})
;; =>
[[{:a 1, :z 2} {:c 3, :z 2}] [{:b 2, :z 2} {:d 5, :z 2}]]

murtaza52 2020-07-26T18:53:47.272100Z

@noprompt how do I make the above work if my input is [(...)(...)] ie a vector of seqs instead of a vector of vectors.

noprompt 2020-07-26T20:17:32.273Z

@murtaza52 Switch to (m/seqable …)

noprompt 2020-07-26T20:18:18.273200Z

Actually, you may need to look at the implementation of that and create your own m/sequential because m/seqable looks for any seqable? thing and calls seq on it.

noprompt 2020-07-23T17:09:07.163700Z

@murtaza52 ☝️

noprompt 2020-07-23T17:12:27.165600Z

One rule to rewrite vectors (recursively rewriting their members), and one to rewrite maps.

noprompt 2020-07-23T17:22:41.169700Z

Meander has some built-in resistance to complex movements, in particular update “in place”. If you find yourself trying to figure out how to do a transform in one fell swoop, break it up in to more focused rules and use m/cata to drive the traversal, etc.

murtaza52 2020-07-24T17:14:28.179300Z

@noprompt thanks ! had not used cata before, so that was a wow moment !

noprompt 2020-07-23T21:37:03.172200Z

Hey folks, I’ve pushed up the some work I’ve been doing to make it possible to dynamically create pattern search interpreters. https://github.com/noprompt/meander/pull/128

🙂 3
noprompt 2020-07-23T21:40:32.175Z

It’s not quite ready to merge. In the spirit of including the community to the extent I can, I’m welcoming feedback both here and on the PR.

noprompt 2020-07-23T21:42:41.176700Z

It’ll at least be another couple weeks before this will get merged. In the mean time I plan to address the regression recently pointed out and smooth out any rough edges I see.

noprompt 2020-07-23T21:45:28.179200Z

Questions are welcome. I know some have mentioned a desire to understand how the semantics are implemented in code and I said that I think an interpreter can help with that. If there’s still confusion, I’m happy to walk through it.