Build a tree from a list of paths and an order. For example:
const paths = [['A', 'B'], ['A', 'C', 'D'], ['A', 'C', 'E']]const tree = treeAna(pathListUnfold(STR.Order))(paths)// A(B, C(D, E)) Copy
const paths = [['A', 'B'], ['A', 'C', 'D'], ['A', 'C', 'E']]const tree = treeAna(pathListUnfold(STR.Order))(paths)// A(B, C(D, E))
Build a tree from a list of paths and an order. For example: