---------------------------------------------------------------------- This is the API documentation for the gdtest_rst_tip library. ---------------------------------------------------------------------- ## Functions Utility functions batch_process(items: list, chunk_size: int = 100) -> list Process items in batches. Parameters ---------- items The items to process. chunk_size The number of items per batch. Returns ------- list The processed results. .. tip:: Use chunk_size=50 for memory-constrained systems. optimize(data: list) -> list Optimize the given data for processing. Parameters ---------- data The data to optimize. Returns ------- list The optimized data. .. tip:: Pre-sort the data for better performance.