fake.modules transposition for aspect-oriented Dendritic Nix. with cross-aspect dependencies. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ dendrix.oeiuwq.com/Dendritic.html
dendritic nix aspect oriented
at doc 15 lines 210 B view raw
1{ transpose, ... }: 2{ 3 4 flake.tests."test transpose common childs become one parent" = { 5 expr = transpose { 6 a.b = 1; 7 c.b = 2; 8 }; 9 expected.b = { 10 a = 1; 11 c = 2; 12 }; 13 }; 14 15}