Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 0xF (0.01 sec)

  1. src/time/format.go

    				}
    			} else {
    				width = len(string(c))
    			}
    			for j := 0; j < width; j++ {
    				buf = append(buf, `\x`...)
    				buf = append(buf, lowerhex[s[i+j]>>4])
    				buf = append(buf, lowerhex[s[i+j]&0xF])
    			}
    		} else {
    			if c == '"' || c == '\\' {
    				buf = append(buf, '\\')
    			}
    			buf = append(buf, string(c)...)
    		}
    	}
    	buf = append(buf, '"')
    	return string(buf)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top