Files
moxa/stdlib/go1_15_math_cmplx.go
Ludovic Fernandez 8bb5daf60e feat: update stdlib mapping for go1.16
- drop stdlib for go1.14
- generate stdlib for go1.16
-  update CI configuration.
2021-02-17 10:02:03 +01:00

44 lines
1.3 KiB
Go

// Code generated by 'yaegi extract math/cmplx'. DO NOT EDIT.
// +build go1.15,!go1.16
package stdlib
import (
"math/cmplx"
"reflect"
)
func init() {
Symbols["math/cmplx"] = map[string]reflect.Value{
// function, constant and variable definitions
"Abs": reflect.ValueOf(cmplx.Abs),
"Acos": reflect.ValueOf(cmplx.Acos),
"Acosh": reflect.ValueOf(cmplx.Acosh),
"Asin": reflect.ValueOf(cmplx.Asin),
"Asinh": reflect.ValueOf(cmplx.Asinh),
"Atan": reflect.ValueOf(cmplx.Atan),
"Atanh": reflect.ValueOf(cmplx.Atanh),
"Conj": reflect.ValueOf(cmplx.Conj),
"Cos": reflect.ValueOf(cmplx.Cos),
"Cosh": reflect.ValueOf(cmplx.Cosh),
"Cot": reflect.ValueOf(cmplx.Cot),
"Exp": reflect.ValueOf(cmplx.Exp),
"Inf": reflect.ValueOf(cmplx.Inf),
"IsInf": reflect.ValueOf(cmplx.IsInf),
"IsNaN": reflect.ValueOf(cmplx.IsNaN),
"Log": reflect.ValueOf(cmplx.Log),
"Log10": reflect.ValueOf(cmplx.Log10),
"NaN": reflect.ValueOf(cmplx.NaN),
"Phase": reflect.ValueOf(cmplx.Phase),
"Polar": reflect.ValueOf(cmplx.Polar),
"Pow": reflect.ValueOf(cmplx.Pow),
"Rect": reflect.ValueOf(cmplx.Rect),
"Sin": reflect.ValueOf(cmplx.Sin),
"Sinh": reflect.ValueOf(cmplx.Sinh),
"Sqrt": reflect.ValueOf(cmplx.Sqrt),
"Tan": reflect.ValueOf(cmplx.Tan),
"Tanh": reflect.ValueOf(cmplx.Tanh),
}
}