Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SpecialCase (0.1 sec)

  1. src/strings/strings.go

    // upper case using the case mapping specified by c.
    func ToUpperSpecial(c unicode.SpecialCase, s string) string {
    	return Map(c.ToUpper, s)
    }
    
    // ToLowerSpecial returns a copy of the string s with all Unicode letters mapped to their
    // lower case using the case mapping specified by c.
    func ToLowerSpecial(c unicode.SpecialCase, s string) string {
    	return Map(c.ToLower, s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top