Fork me on GitHub
#specter
<
2018-03-07
>
hkjels13:03:05

Can I use specter to create a matrix from a tree? Meaning that the first column will be populated with duplicates for all childrens children and so on

nathanmarz14:03:04

@hkjels it would likely be helpful for traversing the tree in the order you want

nathanmarz14:03:45

the code would look something like (reduce build-my-matrix empty-matrix (traverse <path> my-tree))

hkjels14:03:38

Nice, I’ll give it a go