Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for crwth (0.03 sec)

  1. src/strings/example_test.go

    	fmt.Println(strings.IndexFunc("Hello, world", f))
    	// Output:
    	// 7
    	// -1
    }
    
    func ExampleIndexAny() {
    	fmt.Println(strings.IndexAny("chicken", "aeiouy"))
    	fmt.Println(strings.IndexAny("crwth", "aeiouy"))
    	// Output:
    	// 2
    	// -1
    }
    
    func ExampleIndexByte() {
    	fmt.Println(strings.IndexByte("golang", 'g'))
    	fmt.Println(strings.IndexByte("gophers", 'h'))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:05:38 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top