Hacker News new | ask | show | jobs
by tidwall 3079 days ago
The page is missing the best one of them all //go:linkname, which allows for linking in private functions from other packages. Including the Go runtime. For example: https://github.com/tidwall/algo/blob/master/algo.go
1 comments

linkname is brilliant thanks! I've done that sort of thing with an assembler shim in the past.