OXIESEC PANEL
- Current Dir:
/
/
opt
/
golang
/
1.19.4
/
src
/
go
/
parser
/
testdata
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/01/2022 06:13:56 PM
rwxr-xr-x
📄
chans.go2
1.66 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
commas.src
365 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
interface.go2
1.08 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
issue11377.src
535 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
issue23434.src
546 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
issue3106.src
822 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
issue34946.src
601 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📁
issue42951
-
12/01/2022 06:13:56 PM
rwxr-xr-x
📄
issue44504.src
403 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
issue49174.go2
225 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
issue49175.go2
307 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
issue49482.go2
965 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
issue50427.go2
533 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
linalg.go2
2.03 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
map.go2
2.61 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
metrics.go2
908 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📁
resolution
-
12/01/2022 06:13:56 PM
rwxr-xr-x
📄
set.go2
474 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
slices.go2
666 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
sort.go2
902 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
tparams.go2
1.14 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
typeparams.src
516 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
typeset.go2
1.97 KB
12/01/2022 06:12:58 PM
rw-r--r--
Editing: linalg.go2
Close
// 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](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))) }