Open Konard opened 2 years ago
https://github.com/linksplatform/Data.Doublets/blob/86197375ad05039154d0c706d070b5e2a2cfed5a/csharp/Platform.Data.Doublets/Memory/Split/Generic/SplitMemoryLinksBase.cs#L491-L503
if (AreEqual(source, any)) { if (AreEqual(storedLinkValue.Target, target)) { return GetOne(); } } if (AreEqual(target, any)) { if (AreEqual(storedLinkValue.Source, source)) { return GetOne(); } } return GetZero();
Note that this should also affect C++ code base. As @uselessgoddess told me, it is already fixed in Rust code base.
This also applies to Each
https://github.com/linksplatform/Data.Doublets/blob/86197375ad05039154d0c706d070b5e2a2cfed5a/csharp/Platform.Data.Doublets/Memory/Split/Generic/SplitMemoryLinksBase.cs#L491-L503
Note that this should also affect C++ code base. As @uselessgoddess told me, it is already fixed in Rust code base.