Remove unused functions (#2057)

They aren't used anywhere.
This commit is contained in:
livingentity 2022-03-07 17:01:18 +01:00 committed by GitHub
parent d30c44a6a8
commit 87d9653ec2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,20 +101,6 @@ func Max(a, b int) int {
return b
}
func MinF(a, b float64) float64 {
if a < b {
return a
}
return b
}
func MaxF(a, b float64) float64 {
if a > b {
return a
}
return b
}
func StringReverse(s string) string {
r := []rune(s)
for i, j := 0, len(r)-1; i < len(r)/2; i, j = i+1, j-1 {