Hacker News new | ask | show | jobs
by retendo 1117 days ago
Swift doesn't have a GC. The automatic reference counting is a feature that just inserts retain/release statements at compile time, so there is no additional process that handles that. I would suspect that the performance hits originate from other things.
2 comments

I don’t see a lot of utility in policing an overly narrow definition of what constitutes garbage collection.
ARC is a type of GC though.