type time.ParseError
10 uses
time (current package)
format.go#L681: type ParseError struct {
format.go#L694: func (e *ParseError) Error() string {
format.go#L855: return Time{}, &ParseError{alayout, avalue, prefix, value, ""}
format.go#L859: return Time{}, &ParseError{alayout, avalue, "", value, ": extra text: " + quote(value)}
format.go#L1087: return Time{}, &ParseError{alayout, avalue, stdstr, value, ": " + rangeErrString + " out of range"}
format.go#L1090: return Time{}, &ParseError{alayout, avalue, stdstr, value, ""}
format.go#L1112: return Time{}, &ParseError{alayout, avalue, "", value, ": day-of-year out of range"}
format.go#L1124: return Time{}, &ParseError{alayout, avalue, "", value, ": day-of-year does not match month"}
format.go#L1128: return Time{}, &ParseError{alayout, avalue, "", value, ": day-of-year does not match day"}
format.go#L1142: return Time{}, &ParseError{alayout, avalue, "", value, ": day out of range"}
 |
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. |