Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CutPrefix (0.04 sec)

  1. src/bytes/bytes_test.go

    	{"", "d", "", false},
    	{"", "", "", true},
    }
    
    func TestCutPrefix(t *testing.T) {
    	for _, tt := range cutPrefixTests {
    		if after, found := CutPrefix([]byte(tt.s), []byte(tt.sep)); string(after) != tt.after || found != tt.found {
    			t.Errorf("CutPrefix(%q, %q) = %q, %v, want %q, %v", tt.s, tt.sep, after, found, tt.after, tt.found)
    		}
    	}
    }
    
    var cutSuffixTests = []struct {
    	s, sep string
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Jul 28 18:13:58 UTC 2025
    - 62.9K bytes
    - Viewed (0)
Back to top