reflect.Value.OverflowInt (method)
9 uses
reflect (current package)
value.go#L1409: func (v Value) OverflowInt(x int64) bool {
encoding/json
decode.go#L789: if err != nil || reflect.Zero(kt).OverflowInt(n) {
decode.go#L998: if err != nil || v.OverflowInt(n) {
github.com/jackc/pgtype
convert.go#L294: if el.OverflowInt(int64(srcVal)) {
gopkg.in/yaml.v2
decode.go#L488: if !out.OverflowInt(int64(resolved)) {
decode.go#L493: if !out.OverflowInt(resolved) {
decode.go#L498: if resolved <= math.MaxInt64 && !out.OverflowInt(int64(resolved)) {
decode.go#L503: if resolved <= math.MaxInt64 && !out.OverflowInt(int64(resolved)) {
vendor/golang.org/x/crypto/cryptobyte
asn1.go#L266: if !s.readASN1Int64(&i) || reflect.ValueOf(out).Elem().OverflowInt(i) {
![]() |
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. |