UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

SOLVED: Why do we use array.removeAll(keepingCapacity: true) all the time?

Forums > 100 Days of Swift

It seems that in all of the projects I've done in this course so far, Paul always tells us to use array.removeAll(keepingCapacity: true) when deleting all the items from our arrays. But, in Apple's documentation, it says that keepingCapacity is set to false by default. So, why do we always change it? It seems that when I change it to false to test the projects, they still work just fine.

So, is this just for some invisible preformance reasons that make the code more efficient? If so, why does apple set this to false by default if it is more efficient to use true all the time?

3      

@twostraws  Site AdminHWS+

Defaults are usually based on the principle of least surprise: for any given situation, they use whatever is simplest, and least likely to cause problems.

When removing all the items from an array, I think freeing up the space is the right thing to do by default – if you clear an array that was holding 10 million integers, you'd be pretty surprised to see it was still holding on to a fair chunk of memory.

Sometimes, though, we have extra information. For example, if you know the integer array is being cleared but will be refilled almost immediately, you can choose to keep the capacity for performance reasons.

So, Swift does what is simple and safe by default, but leaves open the alternative for times when we know we'll want that capacity again.

7      

Thanks paul , nice to know you keep an eye on the forum in between your busy schedule ...

3      

BUILD THE ULTIMATE PORTFOLIO APP Most Swift tutorials help you solve one specific problem, but in my Ultimate Portfolio App series I show you how to get all the best practices into a single app: architecture, testing, performance, accessibility, localization, project organization, and so much more, all while building a SwiftUI app that works on iOS, macOS and watchOS.

Get it on Hacking with Swift+

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.