removeAll ( object index ) : void
Caution: this function is an exception in Grimport. You need to use it in pointer mode. The pointer is the list.
Remove all elements of the list.
Example
list=[1,2,3,4,4,4]
list.remove(3)
list.remove(4)
console(list) //[1, 2]
See also
regexConfusion
To delete a file use the delete functionParameters
index
The index or the value of elements to remove from the list. !