Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkReplace (0.12 sec)

  1. src/bytes/bytes_test.go

    			t.Errorf("The two implementations do not match %q != %q for Replace(%q, %q, %q, %d)", simple, replace, in, old, new, n)
    		}
    	})
    }
    
    func BenchmarkReplace(b *testing.B) {
    	for _, tt := range ReplaceTests {
    		desc := fmt.Sprintf("%q %q %q %d", tt.in, tt.old, tt.new, tt.n)
    		var (
    			in  = []byte(tt.in)
    			old = []byte(tt.old)
    			new = []byte(tt.new)
    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