make net in port lists arrays

This commit is contained in:
Redo0
2021-05-25 17:18:57 -05:00
parent d25893566e
commit 730ca3fd64
5 changed files with 17 additions and 18 deletions

View File

@@ -66,3 +66,14 @@ function tobitstring(num, len)
return bitstring
end
function array_remove(array, value)
for i = 1, #array do
local v = array[i]
if v==value then
array[i] = array[#array]
array[#array] = nil
return
end
end
error("element not in array")
end