shithub: furgit

ref: c8dd7d3b44c93a664dddc0c4619d336c6e13d2a8
dir: /internal/intconv/i64_u64.go/

View raw version
package intconv

import "fmt"

// Int64ToUint64 converts v to uint64, returning an error if v is negative.
func Int64ToUint64(v int64) (uint64, error) {
	if v < 0 {
		return 0, fmt.Errorf("intconv: int64 %d is negative", v)
	}

	return uint64(v), nil
}