each delta has .with and LikeWith to find X related to Y

This commit is contained in:
Bel LaPointe
2025-04-03 17:28:57 -06:00
parent 8621619433
commit 697fc16b52
5 changed files with 52 additions and 2 deletions

View File

@@ -165,6 +165,15 @@ func (t transaction) deltas() Deltas {
))
}
}
for i := range result {
for j := range result {
if i != j {
result[i] = result[i].withWith(result[j])
}
}
}
return result
}