mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-15 10:50:18 +00:00
dabf3c4099
Bumps the github-dependencies group with 3 updates: [github.com/IBM/keyprotect-go-client](https://github.com/IBM/keyprotect-go-client), [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) and [github.com/onsi/gomega](https://github.com/onsi/gomega). Updates `github.com/IBM/keyprotect-go-client` from 0.14.3 to 0.15.1 - [Release notes](https://github.com/IBM/keyprotect-go-client/releases) - [Changelog](https://github.com/IBM/keyprotect-go-client/blob/master/CHANGELOG.md) - [Commits](https://github.com/IBM/keyprotect-go-client/compare/v0.14.3...v0.15.1) Updates `github.com/aws/aws-sdk-go` from 1.55.4 to 1.55.5 - [Release notes](https://github.com/aws/aws-sdk-go/releases) - [Commits](https://github.com/aws/aws-sdk-go/compare/v1.55.4...v1.55.5) Updates `github.com/onsi/gomega` from 1.34.0 to 1.34.1 - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/gomega/compare/v1.34.0...v1.34.1) --- updated-dependencies: - dependency-name: github.com/IBM/keyprotect-go-client dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies - dependency-name: github.com/aws/aws-sdk-go dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-dependencies - dependency-name: github.com/onsi/gomega dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
45 lines
976 B
Go
45 lines
976 B
Go
// Copyright 2023 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 slices
|
|
|
|
import "golang.org/x/exp/constraints"
|
|
|
|
// min is a version of the predeclared function from the Go 1.21 release.
|
|
func min[T constraints.Ordered](a, b T) T {
|
|
if a < b || isNaN(a) {
|
|
return a
|
|
}
|
|
return b
|
|
}
|
|
|
|
// max is a version of the predeclared function from the Go 1.21 release.
|
|
func max[T constraints.Ordered](a, b T) T {
|
|
if a > b || isNaN(a) {
|
|
return a
|
|
}
|
|
return b
|
|
}
|
|
|
|
// cmpLess is a copy of cmp.Less from the Go 1.21 release.
|
|
func cmpLess[T constraints.Ordered](x, y T) bool {
|
|
return (isNaN(x) && !isNaN(y)) || x < y
|
|
}
|
|
|
|
// cmpCompare is a copy of cmp.Compare from the Go 1.21 release.
|
|
func cmpCompare[T constraints.Ordered](x, y T) int {
|
|
xNaN := isNaN(x)
|
|
yNaN := isNaN(y)
|
|
if xNaN && yNaN {
|
|
return 0
|
|
}
|
|
if xNaN || x < y {
|
|
return -1
|
|
}
|
|
if yNaN || x > y {
|
|
return +1
|
|
}
|
|
return 0
|
|
}
|