aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/zclconf/go-cty/cty/msgpack/infinity.go
blob: 6db0815e4435a2162ac6a5e3e9b6a4549adf8a15 (plain) (blame)
1
2
3
4
5
6
7
8
package msgpack

import (
	"math"
)

var negativeInfinity = math.Inf(-1)
var positiveInfinity = math.Inf(1)