Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for floatToken (0.19 sec)

  1. src/fmt/scan.go

    		s.errorString("unsigned integer overflow on token " + tok)
    	}
    	return i
    }
    
    // floatToken returns the floating-point number starting here, no longer than swid
    // if the width is specified. It's not rigorous about syntax because it doesn't check that
    // we have at least some digits, but Atof will do that.
    func (s *ss) floatToken() string {
    	s.buf = s.buf[:0]
    	// NaN?
    	if s.accept("nN") && s.accept("aA") && s.accept("nN") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
Back to top