Re: [go-nuts] math.Atan implementation

2019-05-30 Thread andrey mirtchovski
Atan is implemented in assembly. for amd64 it's just a call to atan (lowercase a): https://golang.org/src/math/atan_amd64.s for 386 it is not: https://golang.org/src/math/atan_386.s On Thu, May 30, 2019 at 9:15 AM rhiro wrote: > > I'd like to see the implementation for math.Atan, but I see that

[go-nuts] math.Atan implementation

2019-05-30 Thread rhiro
I'd like to see the implementation for math.Atan, but I see that https://golang.org/src/math/atan.go seems to be a missing body for that function "func Atan(x float64) float64". Is this code being hidden, or is there some other mechanism preventing it from showing up? Thanks. -- You received