ref: 27ef9a7e1f2589d1a0eeee4cd6d36d1926989cf2
dir: /internal/intconv/i_u64.go/
package intconv
import "fmt"
// IntToUint64 converts v to uint64, returning an error if v is negative.
func IntToUint64(v int) (uint64, error) {
if v < 0 {
return 0, fmt.Errorf("intconv: int %d is negative", v)
}
return uint64(v), nil
}