BLACK FRIDAY: Save 50% on all my Swift books and bundles! >>

How to remove the first or last item from an array

Swift version: 5.10

Paul Hudson    @twostraws   

Arrays have built-in methods for removing the first or last items, but there’s a subtle difference between them.

First, there are two ways of removing the last item: popLast() and removeLast(). Both remove the last item from the array, but popLast() returns an optional – if the array was empty, you get back nil. If you call removeLast() on an empty array, your app crashes.

So, in this example last1 will contain 5 and last2 will contain 4:

var numbers = [1, 2, 3, 4, 5]
let last1 = numbers.popLast()
let last2 = numbers.removeLast()

As for removing items from the start of the array, there’s only one method: removeFirst(). This, like removeLast(), will crash your app if called when the array is empty.

So, continuing the above example, this will put 1 into first1:

let first1 = numbers.removeFirst()

There is no popFirst() because it’s an expensive operation and the developers want you to think twice – each time you remove an item from the front the rest of the items have to move down, so trying to use popFirst() in a loop would be inefficient.

Save 50% in my WWDC sale.

SAVE 50% All our books and bundles are half price for Black Friday, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.

Save 50% on all our books and bundles!

Available from iOS 8.0

Similar solutions…

About the Swift Knowledge Base

This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.

BUY OUR BOOKS
Buy Pro Swift Buy Pro SwiftUI Buy Swift Design Patterns Buy Testing Swift Buy Hacking with iOS Buy Swift Coding Challenges Buy Swift on Sundays Volume One Buy Server-Side Swift Buy Advanced iOS Volume One Buy Advanced iOS Volume Two Buy Advanced iOS Volume Three Buy Hacking with watchOS Buy Hacking with tvOS Buy Hacking with macOS Buy Dive Into SpriteKit Buy Swift in Sixty Seconds Buy Objective-C for Swift Developers Buy Beyond Code

Was this page useful? Let us know!

Average rating: 3.9/5

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.