This is an old revision of the document!
<- PRPL reference <- Lists
Arguments | Result | Notation |
---|---|---|
original | copy | [ list - list ] |
Creates a copy of a list with the same contents. Unlike CopyList, if the copied list contains other lists, those lists will be copied as well (and if those lists contain other lists, even those will be copied, etc, etc). See How are lists implemented for more info.
Split("A,B,C" ",") ->listInner Split("1,2,3,4,5,6" ",") ->list <-list <-listInner AppendToList <-list CopyList ->listCopy <-list DeepCopyList ->listDeepCopy SetListElement(<-listInner 0 "banana") SetListElement(<-list 0 "orange") Trace(<-list) Trace(<-listCopy) Trace(<-listDeepCopy)