Re: [go-nuts] bodyless functions in standard libary

2016-07-13 Thread Aram Hăvărneanu
https://golang.org/doc/asm -- Aram Hăvărneanu -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit

Re: [go-nuts] bodyless functions in standard libary

2016-07-13 Thread xiiophen
Thanks - so I assume the exported function Frexp is a golang fallback if the relevant architecture assembly file isn't found (?) Is there any official (or unofficial) documentation on linking assembly from packages? -- You received this message because you are subscribed to the Google

[go-nuts] bodyless functions in standard libary

2016-07-13 Thread xiiophen
(newb question) Bodyless functions - such as https://golang.org/src/math/frexp.go?s=469:514#L6 found in the standard library are currently mystifying me.. There's an unexported function of the same name and signature on the same file but no call to it. Is this explained somewhere (I read the