Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for tourer (0.63 sec)

  1. src/bytes/example_test.go

    func ExampleToUpper() {
    	fmt.Printf("%s", bytes.ToUpper([]byte("Gopher")))
    	// Output: GOPHER
    }
    
    func ExampleToUpperSpecial() {
    	str := []byte("ahoj vývojári golang")
    	totitle := bytes.ToUpperSpecial(unicode.AzeriCase, str)
    	fmt.Println("Original : " + string(str))
    	fmt.Println("ToUpper : " + string(totitle))
    	// Output:
    	// Original : ahoj vývojári golang
    	// ToUpper : AHOJ VÝVOJÁRİ GOLANG
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:40 GMT 2024
    - 15K bytes
    - Viewed (1)
  2. src/bytes/bytes_test.go

    }
    
    func TestToUpper(t *testing.T) { runStringTests(t, ToUpper, "ToUpper", upperTests) }
    
    func TestToLower(t *testing.T) { runStringTests(t, ToLower, "ToLower", lowerTests) }
    
    func BenchmarkToUpper(b *testing.B) {
    	for _, tc := range upperTests {
    		tin := []byte(tc.in)
    		b.Run(tc.in, func(b *testing.B) {
    			for i := 0; i < b.N; i++ {
    				actual := ToUpper(tin)
    				if !Equal(actual, tc.out) {
    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)
  3. api/go1.txt

    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
    pkg unicode, method (SpecialCase) ToLower(int32) int32
    pkg unicode, method (SpecialCase) ToTitle(int32) int32
    pkg unicode, method (SpecialCase) ToUpper(int32) int32
    pkg unicode, type CaseRange struct
    pkg unicode, type CaseRange struct, Delta d
    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)
  4. src/cmd/cgo/gcc.go

    	}
    }
    
    func upper(s string) string {
    	if s == "" {
    		return ""
    	}
    	r, size := utf8.DecodeRuneInString(s)
    	if r == '_' {
    		return "X" + s
    	}
    	return string(unicode.ToUpper(r)) + s[size:]
    }
    
    // godefsFields rewrites field names for use in Go or C definitions.
    // It strips leading common prefixes (like tv_ in tv_sec, tv_usec)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg syscall (darwin-arm64), const RTF_PROXY ideal-int
    pkg syscall (darwin-arm64), const RTF_REJECT = 8
    pkg syscall (darwin-arm64), const RTF_REJECT ideal-int
    pkg syscall (darwin-arm64), const RTF_ROUTER = 268435456
    pkg syscall (darwin-arm64), const RTF_ROUTER ideal-int
    pkg syscall (darwin-arm64), const RTF_STATIC = 2048
    pkg syscall (darwin-arm64), const RTF_STATIC ideal-int
    pkg syscall (darwin-arm64), const RTF_UP = 1
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  6. src/bytes/bytes.go

    	for bp < n {
    		chunk := bp
    		if chunk > chunkMax {
    			chunk = chunkMax
    		}
    		bp += copy(nb[bp:], nb[:chunk])
    	}
    	return nb
    }
    
    // ToUpper returns a copy of the byte slice s with all Unicode letters mapped to
    // their upper case.
    func ToUpper(s []byte) []byte {
    	isASCII, hasLower := true, false
    	for i := 0; i < len(s); i++ {
    		c := s[i]
    		if c >= utf8.RuneSelf {
    			isASCII = false
    			break
    		}
    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)
  7. api/go1.1.txt

    pkg debug/elf, const SHT_HIUSER = 4294967295
    pkg debug/elf, const SHT_INIT_ARRAY = 14
    pkg debug/elf, const SHT_LOOS = 1610612736
    pkg debug/elf, const SHT_LOPROC = 1879048192
    pkg debug/elf, const SHT_LOUSER = 2147483648
    pkg debug/elf, const SHT_NOBITS = 8
    pkg debug/elf, const SHT_NOTE = 7
    pkg debug/elf, const SHT_NULL = 0
    pkg debug/elf, const SHT_PREINIT_ARRAY = 16
    pkg debug/elf, const SHT_PROGBITS = 1
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  8. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const IPV6_RECVPKTINFO ideal-int
    pkg syscall (linux-arm-cgo), const IPV6_RECVRTHDR ideal-int
    pkg syscall (linux-arm-cgo), const IPV6_RECVTCLASS ideal-int
    pkg syscall (linux-arm-cgo), const IPV6_ROUTER_ALERT ideal-int
    pkg syscall (linux-arm-cgo), const IPV6_RTHDR ideal-int
    pkg syscall (linux-arm-cgo), const IPV6_RTHDRDSTOPTS ideal-int
    pkg syscall (linux-arm-cgo), const IPV6_RTHDR_LOOSE ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  9. api/go1.22.txt

    pkg go/version, func IsValid(string) bool #62039
    pkg go/version, func Lang(string) string #62039
    pkg html/template, const ErrJSTemplate //deprecated #61619
    pkg io, method (*SectionReader) Outer() (ReaderAt, int64, int64) #61870
    pkg log/slog, func SetLogLoggerLevel(Level) Level #62418
    pkg math/big, method (*Rat) FloatPrec() (int, bool) #50489
    pkg math/rand/v2, func ExpFloat64() float64 #61716
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 20:54:27 GMT 2024
    - 7.7K bytes
    - Viewed (0)
Back to top