Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SimpleFold (0.24 sec)

  1. 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?
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  2. 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
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top