Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExampleSpecialCase (0.11 sec)

  1. src/unicode/example_test.go

    	// Output:
    	// U+0047 'G'
    }
    
    func ExampleToUpper() {
    	const ucG = 'g'
    	fmt.Printf("%#U\n", unicode.ToUpper(ucG))
    
    	// Output:
    	// U+0047 'G'
    }
    
    func ExampleSpecialCase() {
    	t := unicode.TurkishCase
    
    	const lci = 'i'
    	fmt.Printf("%#U\n", t.ToLower(lci))
    	fmt.Printf("%#U\n", t.ToTitle(lci))
    	fmt.Printf("%#U\n", t.ToUpper(lci))
    
    	const uci = 'İ'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 00:18:29 UTC 2021
    - 5.2K bytes
    - Viewed (0)
Back to top