Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SplitAfterSeq (0.3 sec)

  1. api/go1.24.txt

    pkg bytes, func FieldsFuncSeq([]uint8, func(int32) bool) iter.Seq[[]uint8] #61901
    pkg bytes, func FieldsSeq([]uint8) iter.Seq[[]uint8] #61901
    pkg bytes, func Lines([]uint8) iter.Seq[[]uint8] #61901
    pkg bytes, func SplitAfterSeq([]uint8, []uint8) iter.Seq[[]uint8] #61901
    pkg bytes, func SplitSeq([]uint8, []uint8) iter.Seq[[]uint8] #61901
    pkg crypto/cipher, func NewCFBDecrypter //deprecated #69445
    pkg crypto/cipher, func NewCFBEncrypter //deprecated #69445
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Dec 17 21:28:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. src/bytes/example_test.go

    		fmt.Printf("%q\n", part)
    	}
    
    	// Output:
    	// "a"
    	// "b"
    	// "c"
    	// "d"
    }
    
    func ExampleSplitAfterSeq() {
    	s := []byte("a,b,c,d")
    	for part := range bytes.SplitAfterSeq(s, []byte(",")) {
    		fmt.Printf("%q\n", part)
    	}
    
    	// Output:
    	// "a,"
    	// "b,"
    	// "c,"
    	// "d"
    }
    
    func ExampleFieldsSeq() {
    	text := []byte("The quick brown fox")
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon May 12 16:07:54 UTC 2025
    - 16.5K bytes
    - Viewed (0)
Back to top