X7ROOT File Manager
Current Path:
/opt/golang/1.19.4/src/cmd/compile/internal/syntax/testdata
opt
/
golang
/
1.19.4
/
src
/
cmd
/
compile
/
internal
/
syntax
/
testdata
/
📁
..
📄
chans.go
(1.82 KB)
📄
fallthrough.go
(946 B)
📄
interface.go
(1.07 KB)
📄
issue20789.go
(355 B)
📄
issue23385.go
(406 B)
📄
issue23434.go
(634 B)
📄
issue31092.go
(522 B)
📄
issue43527.go
(1.09 KB)
📄
issue43674.go
(452 B)
📄
issue46558.go
(308 B)
📄
issue47704.go
(384 B)
📄
issue48382.go
(736 B)
📄
issue49205.go
(932 B)
📄
issue49482.go
(965 B)
📄
issue52391.go
(400 B)
📄
linalg.go
(2.07 KB)
📄
map.go
(2.76 KB)
📄
map2.go
(3.39 KB)
📄
sample.go
(951 B)
📄
slices.go
(1.49 KB)
📄
smoketest.go
(1.16 KB)
📄
tparams.go
(1.01 KB)
📄
typeset.go
(2.32 KB)
Editing: linalg.go
// Copyright 2019 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. package linalg import "math" // Numeric is type bound that matches any numeric type. // It would likely be in a constraints package in the standard library. type Numeric interface { ~int | ~int8 | ~int16 | ~int32 | ~int64 | uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | float32 | ~float64 | complex64 | ~complex128 } func DotProduct[T Numeric](s1, s2 []T) T { if len(s1) != len(s2) { panic("DotProduct: slices of unequal length") } var r T for i := range s1 { r += s1[i] * s2[i] } return r } // NumericAbs matches numeric types with an Abs method. type NumericAbs[T any] interface { Numeric Abs() T } // AbsDifference computes the absolute value of the difference of // a and b, where the absolute value is determined by the Abs method. func AbsDifference[T NumericAbs[T]](a, b T) T { d := a - b return d.Abs() } // OrderedNumeric is a type bound that matches numeric types that support the < operator. type OrderedNumeric interface { ~int | ~int8 | ~int16 | ~int32 | ~int64 | uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | float32 | ~float64 } // Complex is a type bound that matches the two complex types, which do not have a < operator. type Complex interface { ~complex64 | ~complex128 } // OrderedAbs is a helper type that defines an Abs method for // ordered numeric types. type OrderedAbs[T OrderedNumeric] T func (a OrderedAbs[T]) Abs() OrderedAbs[T] { if a < 0 { return -a } return a } // ComplexAbs is a helper type that defines an Abs method for // complex types. type ComplexAbs[T Complex] T func (a ComplexAbs[T]) Abs() ComplexAbs[T] { r := float64(real(a)) i := float64(imag(a)) d := math.Sqrt(r * r + i * i) return ComplexAbs[T](complex(d, 0)) } func OrderedAbsDifference[T OrderedNumeric](a, b T) T { return T(AbsDifference(OrderedAbs[T](a), OrderedAbs[T](b))) } func ComplexAbsDifference[T Complex](a, b T) T { return T(AbsDifference(ComplexAbs[T](a), ComplexAbs[T](b))) }
Upload File
Create Folder