From a2e8051d4cf6e46310e2e8aab83fee991560d8c0 Mon Sep 17 00:00:00 2001 From: ame Date: Thu, 12 Jun 2025 02:09:35 -0500 Subject: remove old unused code thingy --- docs/io.md | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/docs/io.md b/docs/io.md index 79b4b23..dd5aff0 100644 --- a/docs/io.md +++ b/docs/io.md @@ -52,31 +52,3 @@ returns a table represented by the string ```lua llib.io.json_parse('{"test":[5,4,3]}') -- {"test" : {5, 4, 3}} ``` - -### arg_handle - -'accepts two tables - 1 = table mapped with names and function - 2 = args, or the list of strings to test - -the first table accepts this layout - -{ { list_of_keys, function_to_execute }, ... } - -returns nothing, executes marked functions - -```lua -llib.io.arg_handle({ - { - {"test"}, - function() - print("test") - end, - }, { - {"test2","t"}, - function() - print("test2") - end, - } -}, arg) -``` -- cgit v1.2.3