WWDC23 SALE: Save 50% on all my Swift books and bundles! >>

countElements() is now count()

Available from Swift 1.1

Paul Hudson      @twostraws

In Swift 1.0 you would count an array like this:

let items = [1, 2, 3]
println(countElements(items))

The countElements() function has been renamed to count() in Swift 1.1, so the new code is this:

let items = [1, 2, 3]
println(count(items))

Note: This has changed in later versions of Swift – count is now a property of strings and collections.

Save 50% in my WWDC23 sale.

SAVE 50% To celebrate WWDC23, all our books and bundles are half price, 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!

Other changes in Swift 1.1…

Download all Swift 1.1 changes as a playground Link to Swift 1.1 changes

Browse changes in all Swift versions

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.