From 43c378331797ba763ccb125fb3d0967cae3a834d Mon Sep 17 00:00:00 2001 From: Joao Gilberto Magalhaes Date: Mon, 24 Nov 2025 22:55:37 -0500 Subject: [PATCH] Refactored `evaluateFilterRecursive` by extracting helper methods for better readability and modularity; added `handleCloseGroup`, `handleOpenGroup`, `evaluateFilter`, and `applyOperatorToResult` to simplify logic and improve code clarity in `IteratorFilter`. --- README.md | 2 +- docs/{anydataset.md => anydataset-overview.md} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename docs/{anydataset.md => anydataset-overview.md} (100%) diff --git a/README.md b/README.md index 9c0031e..50d40ee 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ foreach ($iterator as $row) { ## Documentation ### Core Concepts -- [AnyDataset Overview](docs/anydataset.md) - Core component overview and usage +- [AnyDataset Overview](docs/anydataset-overview.md) - Core component overview and usage - [The Row Object](docs/row.md) - Working with data rows - [Iterators](docs/iterators.md) - Different ways to iterate through data diff --git a/docs/anydataset.md b/docs/anydataset-overview.md similarity index 100% rename from docs/anydataset.md rename to docs/anydataset-overview.md