- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for BenchmarkCompareBytesDifferentLength (0.17 seconds)
-
src/bytes/compare_test.go
b1 := []byte("Hello Gophers!") b2 := []byte("Hello, Gophers") for i := 0; i < b.N; i++ { if Compare(b1, b2) != -1 { b.Fatal("b1 < b2 failed") } } } func BenchmarkCompareBytesDifferentLength(b *testing.B) { b1 := []byte("Hello Gophers!") b2 := []byte("Hello, Gophers!") for i := 0; i < b.N; i++ { if Compare(b1, b2) != -1 { b.Fatal("b1 < b2 failed") } } }Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Jul 13 23:11:42 GMT 2023 - 6.8K bytes - Click Count (0)