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 archAcos( float64) float64 {panic("not implemented")}const haveArchAcosh = falsefunc archAcosh( float64) float64 {panic("not implemented")}const haveArchAsin = falsefunc archAsin( float64) float64 {panic("not implemented")}const haveArchAsinh = falsefunc archAsinh( float64) float64 {panic("not implemented")}const haveArchAtan = falsefunc archAtan( float64) float64 {panic("not implemented")}const haveArchAtan2 = falsefunc archAtan2(, float64) float64 {panic("not implemented")}const haveArchAtanh = falsefunc archAtanh( float64) float64 {panic("not implemented")}const haveArchCbrt = falsefunc archCbrt( float64) float64 {panic("not implemented")}const haveArchCos = falsefunc archCos( float64) float64 {panic("not implemented")}const haveArchCosh = falsefunc archCosh( float64) float64 {panic("not implemented")}const haveArchErf = falsefunc archErf( float64) float64 {panic("not implemented")}const haveArchErfc = falsefunc archErfc( float64) float64 {panic("not implemented")}const haveArchExpm1 = falsefunc archExpm1( float64) float64 {panic("not implemented")}const haveArchFrexp = falsefunc archFrexp( float64) (float64, int) {panic("not implemented")}const haveArchLdexp = falsefunc archLdexp( float64, int) float64 {panic("not implemented")}const haveArchLog10 = falsefunc archLog10( float64) float64 {panic("not implemented")}const haveArchLog2 = falsefunc archLog2( float64) float64 {panic("not implemented")}const haveArchLog1p = falsefunc archLog1p( float64) float64 {panic("not implemented")}const haveArchMod = falsefunc archMod(, float64) float64 {panic("not implemented")}const haveArchPow = falsefunc archPow(, float64) float64 {panic("not implemented")}const haveArchRemainder = falsefunc archRemainder(, float64) float64 {panic("not implemented")}const haveArchSin = falsefunc archSin( float64) float64 {panic("not implemented")}const haveArchSinh = falsefunc archSinh( float64) float64 {panic("not implemented")}const haveArchTan = falsefunc archTan( float64) float64 {panic("not implemented")}const haveArchTanh = falsefunc archTanh( 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. |