Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for u12 (0.01 sec)

  1. src/encoding/json/scanner.go

    		s.step = stateInStringEscU12
    		return scanContinue
    	}
    	// numbers
    	return s.error(c, "in \\u hexadecimal character escape")
    }
    
    // stateInStringEscU12 is the state after reading `"\u12` during a quoted string.
    func stateInStringEscU12(s *scanner, c byte) int {
    	if '0' <= c && c <= '9' || 'a' <= c && c <= 'f' || 'A' <= c && c <= 'F' {
    		s.step = stateInStringEscU123
    		return scanContinue
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top