crpl:docs:removelistelement

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
crpl:docs:removelistelement [2013/10/24 13:20] – created Grayzzurcrpl:docs:removelistelement [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 1: Line 1:
-~~DISCUSSION~~+
 <- [[crpl:crplreference| CRPL reference]] <- [[crpl:crplreference#lists|Lists]] <- [[crpl:crplreference| CRPL reference]] <- [[crpl:crplreference#lists|Lists]]
 =====  RemoveListElement  ===== =====  RemoveListElement  =====
Line 9: Line 9:
 === Description === === Description ===
 Removes the list element at location ''i1'' in list ''L1'', pushing the next element and all subsequent elements down by one. Removes the list element at location ''i1'' in list ''L1'', pushing the next element and all subsequent elements down by one.
 +
 +Be careful when iterating over a list and using this command. If you delete list entries while looping over it, the deletions will move subsequent entries back, and the loop might fail to catch them all.
 +
 +For example, if you try doing this:
 +
 +<code>
 +CreateList ->list
 +"h" "e" 1 1 "l" "l" 1 "o" 1 "w" "o" "r" 1 "l" "d" 1 <-list AppendStackToList
 +
 +<-list GetListCount 0 do
 + <-list I GetListElement 1 eq if
 + <-list I RemoveListElement
 + endif
 +loop
 +</code>
 +
 +The list output will combine into ''he1lloworld''. This is because when the third element of the list was removed, the fourth element (which is also a 1) was moved to the third position, but the third position was already checked so it has been skipped over.
 +
 +To fix this, you want to do this:
 +
 +<code>
 +CreateList ->list
 +"h" "e" 1 1 "l" "l" 1 "o" 1 "w" "o" "r" 1 1 1 1 "l" "d" 1 <-list AppendStackToList
 +
 +0 ->i
 +<-list GetListCount 0 do
 + <-list <-i GetListElement 1 eq if
 + <-list <-i RemoveListElement
 + <-i 1 sub ->i
 + endif
 +
 + <-i 1 add ->i
 +loop
 +</code>
 +
 +Now, whenever we remove an element, we also push the current loop index back by 1, to make sure we catch all the elements inside the loop. The output combines into ''helloworld''.
 === Examples === === Examples ===
 <code> <code>
crpl/docs/removelistelement.1382620807.txt.gz · Last modified: 2025/02/14 14:56 (external edit)