ceph-csi/vendor/github.com/onsi/gomega/matchers/support/goraph/util/util.go

8 lines
95 B
Go
Raw Normal View History

package util
import "math"
func Odd(n int) bool {
return math.Mod(float64(n), 2.0) == 1.0
}