Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ParseXXX (0.08 sec)

  1. src/strconv/atoi.go

    	return "strconv." + e.Func + ": " + "parsing " + Quote(e.Num) + ": " + e.Err.Error()
    }
    
    func (e *NumError) Unwrap() error { return e.Err }
    
    // All ParseXXX functions allow the input string to escape to the error value.
    // This hurts strconv.ParseXXX(string(b)) calls where b is []byte since
    // the conversion from []byte must allocate a string on the heap.
    // If we assume errors are infrequent, then we can avoid escaping the input
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top