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 mathconst haveArchAcos = falsefunc ( float64) float64 {panic("not implemented")}const haveArchAcosh = falsefunc ( float64) float64 {panic("not implemented")}const haveArchAsin = falsefunc ( float64) float64 {panic("not implemented")}const haveArchAsinh = falsefunc ( float64) float64 {panic("not implemented")}const haveArchAtan = falsefunc ( float64) float64 {panic("not implemented")}const haveArchAtan2 = falsefunc (, float64) float64 {panic("not implemented")}const haveArchAtanh = falsefunc ( float64) float64 {panic("not implemented")}const haveArchCbrt = falsefunc ( float64) float64 {panic("not implemented")}const haveArchCos = falsefunc ( float64) float64 {panic("not implemented")}const haveArchCosh = falsefunc ( float64) float64 {panic("not implemented")}const haveArchErf = falsefunc ( float64) float64 {panic("not implemented")}const haveArchErfc = falsefunc ( float64) float64 {panic("not implemented")}const haveArchExpm1 = falsefunc ( float64) float64 {panic("not implemented")}const haveArchFrexp = falsefunc ( float64) (float64, int) {panic("not implemented")}const haveArchLdexp = falsefunc ( float64, int) float64 {panic("not implemented")}const haveArchLog10 = falsefunc ( float64) float64 {panic("not implemented")}const haveArchLog2 = falsefunc ( float64) float64 {panic("not implemented")}const haveArchLog1p = falsefunc ( float64) float64 {panic("not implemented")}const haveArchMod = falsefunc (, float64) float64 {panic("not implemented")}const haveArchPow = falsefunc (, float64) float64 {panic("not implemented")}const haveArchRemainder = falsefunc (, float64) float64 {panic("not implemented")}const haveArchSin = falsefunc ( float64) float64 {panic("not implemented")}const haveArchSinh = falsefunc ( float64) float64 {panic("not implemented")}const haveArchTan = falsefunc ( float64) float64 {panic("not implemented")}const haveArchTanh = falsefunc ( float64) float64 {panic("not implemented")}
![]() |
The pages are generated with Golds v0.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |