- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for SimpleFold (0.11 seconds)
-
src/bytes/bytes.go
if 'A' <= sr && sr <= 'Z' && tr == sr+'a'-'A' { continue } return false } // General case. SimpleFold(x) returns the next equivalent rune > x // or wraps around to smaller values. r := unicode.SimpleFold(sr) for r != sr && r < tr { r = unicode.SimpleFold(r) } if r == tr { continue } return false } // One string is empty. Are both?
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue Sep 16 16:42:15 GMT 2025 - 35.5K bytes - Click Count (0) -
api/go1.txt
pkg unicode, func IsPunct(int32) bool pkg unicode, func IsSpace(int32) bool pkg unicode, func IsSymbol(int32) bool pkg unicode, func IsTitle(int32) bool pkg unicode, func IsUpper(int32) bool pkg unicode, func SimpleFold(int32) int32 pkg unicode, func To(int, int32) int32 pkg unicode, func ToLower(int32) int32 pkg unicode, func ToTitle(int32) int32 pkg unicode, func ToUpper(int32) int32
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Aug 14 18:58:28 GMT 2013 - 1.7M bytes - Click Count (0)