The last element of the collection.
SDK
Framework
On This Page
var last: UTF16.CodeUnit? { get }
If the collection is empty, the value of this property is nil.
nil
let numbers = [10, 20, 30, 40, 50] if let lastNumber = numbers.last { print(lastNumber) } // Prints "50"
Complexity: O(1)