|
|
|
|
|
by nivenhuh
889 days ago
|
|
I think you mean automatic reference counting (ARC) — and ARC happens at compile time as part of a static analysis pass. (The compiler is basically adding retain/release code for you.) At runtime, it’s functionally close(ish) to malloc/free and doesn’t carry much overhead. |
|
ARC certainly helps ARC be more performant than ARC without ARC due to the elided traffic on the count. (lol)