Fork me on GitHub
#meander
<
2020-04-19
>
markaddleman13:04:49

🙂 Doing well, thanks.

markaddleman13:04:25

Enjoying the heck out of meander. Trying to do some graph walking but I'm not quite getting something about with. I'm going to beat my head against it for another hour or so before I cry uncle and ask for some help

markaddleman14:04:33

Alright, I'm crying uncle... I'm trying to walk a graph that looks like

{:a :b, :b :c, :c :d}
to obtain parents and their children/grandchildren/...
{:a [:b :c :d], :b [:c :d], :c [:d], :d []}

Jimmy Miller16:04:01

No idea how I'd do this. Definitely not trivial

markaddleman19:04:26

No worries 🙂 It's good to know where the boundaries are. Hope things are well with you

markaddleman14:04:52

I'm having trouble expressing a recursively constrained pattern.