Removes the indicated elements from the list.
var/list/L = list(1, 2, 3, 4) L.Cut(2, 4) world.log << json_encode(L) // "[1,4]"