Files
avo/examples/complex/stub.go

13 lines
320 B
Go
Raw Permalink Normal View History

2018-12-18 22:57:26 -08:00
// Code generated by command: go run asm.go -out complex.s -stubs stub.go. DO NOT EDIT.
2018-12-12 00:02:22 -08:00
package complex
2018-12-27 23:09:44 -08:00
// Real returns the real part of z.
func Real(z complex128) float64
2018-12-18 22:57:26 -08:00
2018-12-27 23:09:44 -08:00
// Imag returns the imaginary part of z.
func Imag(z complex128) float64
2018-12-18 22:57:26 -08:00
2018-12-27 23:09:44 -08:00
// Norm returns the complex norm of z.
func Norm(z complex128) float64