Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ExampleIndex (0.15 sec)

  1. src/cmd/internal/test2json/testdata/framebig.json

    {"Action":"output","Test":"TestIndexFunc","Output":"=== PASS  TestIndexFunc\n"}
    {"Action":"run","Test":"ExampleIndex"}
    {"Action":"output","Test":"ExampleIndex","Output":"=== RUN   ExampleIndex\n"}
    {"Action":"output","Test":"ExampleIndex","Output":"--- PASS: ExampleIndex (0.00s)\n"}
    {"Action":"pass","Test":"ExampleIndex"}
    {"Action":"run","Test":"ExampleIndexFunc"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  2. src/slices/example_test.go

    		sn, err := strconv.ParseInt(s, 0, 64)
    		if err != nil {
    			return false
    		}
    		return n == int(sn)
    	})
    	fmt.Println(equal)
    	// Output:
    	// true
    }
    
    func ExampleIndex() {
    	numbers := []int{0, 42, 8}
    	fmt.Println(slices.Index(numbers, 8))
    	fmt.Println(slices.Index(numbers, 7))
    	// Output:
    	// 2
    	// -1
    }
    
    func ExampleIndexFunc() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/strings/example_test.go

    	fmt.Println(strings.HasSuffix("Amigo", "Ami"))
    	fmt.Println(strings.HasSuffix("Amigo", ""))
    	// Output:
    	// true
    	// false
    	// false
    	// true
    }
    
    func ExampleIndex() {
    	fmt.Println(strings.Index("chicken", "ken"))
    	fmt.Println(strings.Index("chicken", "dmr"))
    	// Output:
    	// 4
    	// -1
    }
    
    func ExampleIndexFunc() {
    	f := func(c rune) bool {
    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