Source File
stubs.go
Belonging Package
math
// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build !s390x
// This is a large group of functions that most architectures don't
// implement in assembly.
package math
const haveArchAcos = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchAcosh = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchAsin = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchAsinh = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchAtan = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchAtan2 = false
func (, float64) float64 {
panic("not implemented")
}
const haveArchAtanh = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchCbrt = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchCos = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchCosh = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchErf = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchErfc = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchExpm1 = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchFrexp = false
func ( float64) (float64, int) {
panic("not implemented")
}
const haveArchLdexp = false
func ( float64, int) float64 {
panic("not implemented")
}
const haveArchLog10 = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchLog2 = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchLog1p = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchMod = false
func (, float64) float64 {
panic("not implemented")
}
const haveArchPow = false
func (, float64) float64 {
panic("not implemented")
}
const haveArchRemainder = false
func (, float64) float64 {
panic("not implemented")
}
const haveArchSin = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchSinh = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchTan = false
func ( float64) float64 {
panic("not implemented")
}
const haveArchTanh = false
func ( float64) float64 {
panic("not implemented")
}
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |