top | item 36028530

(no title)

retendo | 2 years 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.

discuss

order

cellularmitosis|2 years ago

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

frizlab|2 years ago

ARC is a type of GC though.