Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for u12 (0.57 sec)

  1. src/internal/types/testdata/check/expr0.go

    	u0 = uint(1)
    	u1 uint = u0
    	u2 = +1
    	u3 = +u0
    	u4 uint = +1
    	u5 uint = +u4
    	u6 = -1
    	u7 = -u0
    	u8 uint = - /* ERROR "overflows" */ 1
    	u9 uint = -u4
    	u10 = !u0 /* ERROR "not defined" */
    	u11 = ^1
    	u12 = ^i0
    	u13 uint = ^ /* ERROR "overflows" */ 1
    	u14 uint = ^u4
    	u15 = *u0 /* ERROR "cannot indirect" */
    	u16 = &u0
    	u17 = *u16
    	u18 = <-u16 /* ERROR "cannot receive" */
    	u19 = ^uint(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. 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