Home
last modified time | relevance | path

Searched defs:NumError (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/strconv/
Datoi.go27 type NumError struct { struct
28 Func string // the failing function (ParseBool, ParseInt, ParseUint, ParseFloat, ParseComplex)
29 Num string // the input
30 Err error // the reason the conversion failed (e.g. ErrRange, ErrSyntax, etc.)
33 func (e *NumError) Error() string {
37 func (e *NumError) Unwrap() error { return e.Err }