---------------------------------------------------------------------- This is the API documentation for the gdtest_sec_with_ref library. ---------------------------------------------------------------------- ## Core Core API process(data: list) -> list Process a list of data items. Parameters ---------- data : list The raw data to process. Returns ------- list The processed data. Examples -------- >>> process([1, 2, 3]) [2, 4, 6] analyze(data: list) -> dict Analyze a list of data and return statistics. Parameters ---------- data : list The data to analyze. Returns ------- dict A dictionary with analysis results. Examples -------- >>> analyze([10, 20, 30]) {'mean': 20.0, 'count': 3} ## Helpers Helper functions format_output(result: dict) -> str Format an analysis result as a readable string. Parameters ---------- result : dict The result dictionary to format. Returns ------- str A formatted string representation of the result. Examples -------- >>> format_output({"mean": 2.0, "count": 3}) 'mean=2.0, count=3'