Open thorwhalen opened 2 years ago
It seems like order get's screwed up. See below that dag[:'b c'] gives the wrong anwer (the same thatdag[:'c b]` gives).
dag[:'b c']
dag[:'c b
Also, in dag[:'b d'] one would expect to get the value of b and the value of d, but we only get d..
dag[:'b d']
b
d
See also https://github.com/i2mint/meshed/discussions/60
It seems like order get's screwed up. See below that
dag[:'b c']
gives the wrong anwer (the same thatdag[:'c b
]` gives).Also, in
dag[:'b d']
one would expect to get the value ofb
and the value ofd
, but we only getd
..