terraform-provider-google/vendor/github.com/zclconf/go-cty/cty/msgpack/infinity.go
2019-02-26 14:56:13 -08:00

9 lines
108 B
Go

package msgpack
import (
"math"
)
var negativeInfinity = math.Inf(-1)
var positiveInfinity = math.Inf(1)