Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/strconv/quote.go

    // If r is not a valid Unicode code point, it is interpreted as the Unicode
    // replacement character U+FFFD.
    func QuoteRuneToASCII(r rune) string {
    	return quoteRuneWith(r, '\'', true, false)
    }
    
    // AppendQuoteRuneToASCII appends a single-quoted Go character literal representing the rune,
    // as generated by [QuoteRuneToASCII], to dst and returns the extended buffer.
    func AppendQuoteRuneToASCII(dst []byte, r rune) []byte {
    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