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))
|
||
|
}
|