(no title)
froh
|
15 days ago
when does golang create the final dynamic dispatch tables? isn't that the one thing that in golang needs real compute at final link time, beyond what a C linker would do? and where C++ has all information at compile time, while golang can only create the dispatch tables at link time?
jespino|15 days ago
froh|15 days ago
the interface table computation is a golang speciality, a fascinating one.
and the implementation of interface magic is disturbingly not mentioned in the article.