stash/vendor/github.com/antchfx/xpath/func_go110.go
2022-11-07 12:33:15 +11:00

16 lines
191 B
Go

// +build go1.10
package xpath
import (
"math"
"strings"
)
func round(f float64) int {
return int(math.Round(f))
}
func newStringBuilder() stringBuilder{
return &strings.Builder{}
}