Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for rescanLiteral (0.22 sec)

  1. src/encoding/json/decode.go

    		i++
    		if newOp != op {
    			d.opcode = newOp
    			d.off = i
    			return
    		}
    	}
    
    	d.off = len(data) + 1 // mark processed EOF with len+1
    	d.opcode = d.scan.eof()
    }
    
    // rescanLiteral is similar to scanWhile(scanContinue), but it specialises the
    // common case where we're decoding a literal. The decoder scans the input
    // twice, once for syntax errors and to check the length of the value, and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top