Post Reply 
Add a value at the start of a list.
01-13-2024, 01:15 AM
Post: #6
RE: Add a value at the start of a list.
(01-12-2024 11:13 PM)BruceH Wrote:  
(01-10-2024 10:57 PM)matalog Wrote:  Is there a way to add a value to the start of a list?

Code:
INSERT({1,2,3},1,5) -> {5,1,2,3}
INSERT([1,2,3],1,5) -> [5,1,2,3]

Or, slightly simpler:

Code:
prepend({1,2,3},5) -> {5,1,2,3}
prepend([1,2,3],5) -> [5,1,2,3]

<0|ΙΈ|0>
-Joe-
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Add a value at the start of a list. - Joe Horn - 01-13-2024 01:15 AM



User(s) browsing this thread: 1 Guest(s)