Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for appendQuotedRuneWith (0.14 sec)

  1. src/strconv/quote.go

    	return string(appendQuotedWith(make([]byte, 0, 3*len(s)/2), s, quote, ASCIIonly, graphicOnly))
    }
    
    func quoteRuneWith(r rune, quote byte, ASCIIonly, graphicOnly bool) string {
    	return string(appendQuotedRuneWith(nil, r, quote, ASCIIonly, graphicOnly))
    }
    
    func appendQuotedWith(buf []byte, s string, quote byte, ASCIIonly, graphicOnly bool) []byte {
    	// Often called with big strings, so preallocate. If there's quoting,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top