type time.ParseError
9 uses
time (current package)
format.go#L819: type ParseError struct {
format.go#L829: func newParseError(layout, value, layoutElem, valueElem, message string) *ParseError {
format.go#L832: return &ParseError{layout, valueCopy, layoutElem, valueElemCopy, message}
format.go#L886: func (e *ParseError) Error() string {
format_rfc3339.go#L173: return Time{}, &ParseError{RFC3339, string(b), "15", string(b[len("2006-01-02T"):][:1]), ""}
format_rfc3339.go#L175: return Time{}, &ParseError{RFC3339, string(b), ".", ",", ""}
format_rfc3339.go#L179: return Time{}, &ParseError{RFC3339, string(b), "Z07:00", string(b[len(b)-len("Z07:00"):]), ": timezone hour out of range"}
format_rfc3339.go#L181: return Time{}, &ParseError{RFC3339, string(b), "Z07:00", string(b[len(b)-len("Z07:00"):]), ": timezone minute out of range"}
format_rfc3339.go#L184: return Time{}, &ParseError{RFC3339, string(b), RFC3339, string(b), ""}
|
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |