-
Simple command to remove value(s) from the array.
Usage testample:
local testArr1 = {'a', 'a', 'b', 'c', 'a', 'b'} local testArr2 = {1, 2, 1, 4, 7, 1} local result1 = CC_ArrayRemove2(testArr1, 'a') local result2 = CC_ArrayRemove2(testArr2, 1) local result3 = CC_ArrayRemove2(testArr1, 'a', true) local result4 = CC_ArrayRemove2(testArr2, 1, true) Log(result1) -- missing first 'a' Log(result2) -- missing first '1' Log(result3) -- missing all 'a' Log(result4) -- missing all '1'