Revert "feat: add two dimensional data walker, refs: NOISSUE"
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 28s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 1m16s

This reverts commit 414c74be84.
This commit is contained in:
2025-10-26 19:16:29 +01:00
parent 1a8a82c106
commit d41d9f1791
7 changed files with 35 additions and 149 deletions

View File

@@ -98,8 +98,6 @@ public abstract class DataSetManipulatorBase<TCollectedType, TDataType, TIndexTy
// we do not know how to iterate a specific data set exactly, but we only need to find specific items to be able to continue with any other algorithm
public abstract List<SearchResult<TIndexType>> FindInSet(TDataType data);
public abstract List<SearchResult<TIndexType>> GetAllItems();
public List<DirectionalSearchResult<TIndexType>> FindAtPosition(IDataIndex<TIndexType> currentPosition, List<TDataType> data)
{
return this.FindAtPosition(currentPosition, data, this.ValidDirections());