Fork me on GitHub
#meander
<
2020-07-23
>
ikrimael06:07:12

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

murtaza5209:07:38

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 Miller14:07:24

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})

murtaza5214:07:35

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

Jimmy Miller14:07:34

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}))

murtaza5214:07:13

(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 ?

murtaza5214:07:48

(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.

noprompt17:07:25

(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}]]

murtaza5218:07:47

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

noprompt20:07:32

@murtaza52 Switch to (m/seqable …)

noprompt20:07:18

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.

noprompt17:07:27

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

noprompt17:07:41

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.

murtaza5217:07:28

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

noprompt21:07:03

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

🙂 9
noprompt21:07:32

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.

noprompt21:07:41

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.

noprompt21:07:28

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.