Y
Hacker News
new
|
ask
|
show
|
jobs
by
colejohnson66
3119 days ago
What about just forwarding the var_args variable?
1 comments
saagarjha
3119 days ago
You'd have to pass around a va_list everywhere and parse it at the call site. This adds overhead that you probably don't want to deal with, especially since objc_msgSend is probably
the
hottest code path in any Objective-C program.
link