Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsUpper (0.2 sec)

  1. src/bytes/bytes_test.go

    type predicate struct {
    	f    func(r rune) bool
    	name string
    }
    
    var isSpace = predicate{unicode.IsSpace, "IsSpace"}
    var isDigit = predicate{unicode.IsDigit, "IsDigit"}
    var isUpper = predicate{unicode.IsUpper, "IsUpper"}
    var isValidRune = predicate{
    	func(r rune) bool {
    		return r != utf8.RuneError
    	},
    	"IsValidRune",
    }
    
    type TrimFuncTest struct {
    	f        predicate
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg unicode, func IsPrint(int32) bool
    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