User Tools

Site Tools


crpl:docs:setlistelement

Differences

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

Link to this comparison view

Next revision
Previous revision
crpl:docs:setlistelement [2013/07/29 14:19] – created thepenguincrpl:docs:setlistelement [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 1: Line 1:
-~~DISCUSSION~~ + 
-<- [[crpl:crplreference| CRPL reference]] <- [[crpl:crplreference#input_commands|Lists]] +<- [[crpl:crplreference| CRPL reference]] <- [[crpl:crplreference#lists|Lists]] 
-=====  GetListElement  =====+=====  SetListElement  =====
  
 ^Arguments^Result^Notation^ ^Arguments^Result^Notation^
Line 8: Line 8:
  
 === Description === === Description ===
 +Sets the value of element ''i1'' in list ''L1'' to ''n1''
 +
 +Elements are indexed starting with zero, so the third element is at index 2. SetListElement can add a new
 +element at the end of a list, if ''i1'' is the value of the next index (3 if the list currently has only 3 elements); however, it is recommended to use [[AppendToList]] to add items to the end. Attempting to use SetListElement with an index value greater than the last index +1 does nothing.
 +=== Examples ===
 <code> <code>
 #Sets element #3 of list01 to the value of 5 #Sets element #3 of list01 to the value of 5
 <-list01 2 5 SetListElement <-list01 2 5 SetListElement
 </code> </code>
 +Sample list ''list01'' before:\\
 +0 - 100\\
 +1 - 105\\
 +2 - 110\\
 +3 - 115
 +
 +Sample list ''list01'' after sample command:\\
 +0 - 100\\
 +1 - 105\\
 +2 - 5\\
 +3 - 115
 +
crpl/docs/setlistelement.1375107576.txt.gz · Last modified: 2025/02/14 14:56 (external edit)