shithub: furgit

ref: fb9eb058f1c9b7cb26f33bbe679a85f530566641
dir: /internal/intconv/i_u64.go/

View raw version
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
}