From 4e5445e6bcd2007a6308942237523eef7c94953f Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 11 Oct 2017 20:32:31 -0700 Subject: [PATCH] Added table.remove to collections. --- lib/collections.nom | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/collections.nom b/lib/collections.nom index 4d459b7..91b7941 100644 --- a/lib/collections.nom +++ b/lib/collections.nom @@ -73,6 +73,13 @@ compile [..] compile [append %item to %list, add %item to %list] to: "table.insert(\(%list as lua), \(%item as lua))" +compile [pop from %list, remove last from %list] to: + "table.remove(\(%list as lua))" + +compile [remove index %index from %list] to: + "table.remove(\(%list as lua), \(%index as lua))" + + rule [flatten %lists] =: %flat = [] for %list in %lists: