alphacyberranger to Programmer Humor@programming.devEnglish • 2 years agoMore the merrierlemmy.worldimagemessage-square75fedilinkarrow-up11.23K
arrow-up11.23KimageMore the merrierlemmy.worldalphacyberranger to Programmer Humor@programming.devEnglish • 2 years agomessage-square75fedilink
minus-square@RagingRobot@lemmy.worldlinkfedilink5•2 years agoDoes this return a new list or modify the original? I would hope it returns a new one but I would know for sure if there was documentation.
minus-square@kablammy@sh.itjust.workslinkfedilink4•2 years agoI would hope it modifies the original. It’s implied in the name. A function that returns all but the first item should be named something like tail or without_first_item.
Does this return a new list or modify the original? I would hope it returns a new one but I would know for sure if there was documentation.
I would hope it modifies the original. It’s implied in the name. A function that returns all but the first item should be named something like
tail
orwithout_first_item
.