I've realized the only way to delete an element from a list right now is to delete every element of the list from the tail up to that element, and then re-add every element back into the list, which is terribly inefficient. I was thinking that we maybe should add a "REMOVE ELEMENT AT" command to delete elements from a list that are not in the last position.
I've realized the only way to delete an element from a list right now is to delete every element of the list from the tail up to that element, and then re-add every element back into the list, which is terribly inefficient. I was thinking that we maybe should add a "REMOVE ELEMENT AT" command to delete elements from a list that are not in the last position.