Files

24 lines
917 B
Go
Raw Permalink Normal View History

// Code generated by command: go run asm.go -out returns.s -stubs stub.go. DO NOT EDIT.
package returns
2018-12-27 23:01:27 -08:00
// Interval returns the (start, end) of an interval with the given start and size.
// Demonstrates multiple unnamed return values.
func Interval(start uint64, size uint64) (uint64, uint64)
2018-12-27 23:01:27 -08:00
// Butterfly performs a 2-dimensional butterfly operation: computes (x0+x1, x0-x1).
// Demonstrates multiple named return values.
func Butterfly(x0 float64, x1 float64) (y0 float64, y1 float64)
2018-12-27 23:01:27 -08:00
// Septuple returns an array of seven of the given byte.
// Demonstrates returning array values.
func Septuple(byte) [7]byte
2018-12-27 23:01:27 -08:00
// CriticalLine returns the complex value 0.5 + it on Riemann's critical line.
// Demonstrates returning complex values.
func CriticalLine(t float64) complex128
2018-12-27 23:01:27 -08:00
// NewStruct initializes a Struct value.
// Demonstrates returning struct values.
func NewStruct(w uint16, p [2]float64, q uint64) Struct