reflect.Value.OverflowUint (method)
9 uses
reflect (current package)
value.go#L1422: func (v Value) OverflowUint(x uint64) bool {
encoding/json
decode.go#L797: if err != nil || reflect.Zero(kt).OverflowUint(n) {
decode.go#L1006: if err != nil || v.OverflowUint(n) {
github.com/jackc/pgtype
convert.go#L303: if el.OverflowUint(uint64(srcVal)) {
gopkg.in/yaml.v2
decode.go#L519: if resolved >= 0 && !out.OverflowUint(uint64(resolved)) {
decode.go#L524: if resolved >= 0 && !out.OverflowUint(uint64(resolved)) {
decode.go#L529: if !out.OverflowUint(uint64(resolved)) {
decode.go#L534: if resolved <= math.MaxUint64 && !out.OverflowUint(uint64(resolved)) {
vendor/golang.org/x/crypto/cryptobyte
asn1.go#L273: if !s.readASN1Uint64(&u) || reflect.ValueOf(out).Elem().OverflowUint(u) {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |