mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-11 18:00:59 -04:00
10 lines
105 B
Go
10 lines
105 B
Go
// +build go1.10
|
|
|
|
package xpath
|
|
|
|
import "math"
|
|
|
|
func round(f float64) int {
|
|
return int(math.Round(f))
|
|
}
|