type strconv.NumError
14 uses
strconv (current package)
number.go#L252: type NumError struct {
number.go#L258: func (e *NumError) Error() string {
number.go#L262: func (e *NumError) Unwrap() error { return e.Err }
number.go#L272: func syntaxError(fn, str string) *NumError {
number.go#L273: return &NumError{fn, stringslite.Clone(str), ErrSyntax}
number.go#L276: func rangeError(fn, str string) *NumError {
number.go#L277: return &NumError{fn, stringslite.Clone(str), ErrRange}
number.go#L280: func baseError(fn, str string, base int) *NumError {
number.go#L281: return &NumError{fn, stringslite.Clone(str), errors.New("invalid base " + Itoa(base))}
number.go#L284: func bitSizeError(fn, str string, bitSize int) *NumError {
number.go#L285: return &NumError{fn, stringslite.Clone(str), errors.New("invalid bit size " + Itoa(bitSize))}
fmt
scan.go#L784: if e, ok := err.(*strconv.NumError); ok {
scan.go#L792: if e, ok := err.(*strconv.NumError); ok {
net/http
h2_bundle.go#L3472: return n, &strconv.NumError{Func: "ParseUint", Num: string(s0), Err: err}
 |
The pages are generated with Golds v0.8.4. (GOOS=linux 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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |