MCPcopy Index your code
hub / github.com/google/codesearch / equalList

Function equalList

index/read_test.go:50–60  ·  view source on GitHub ↗
(x, y []uint32)

Source from the content-addressed store, hash-verified

48}
49
50func equalList(x, y []uint32) bool {
51 if len(x) != len(y) {
52 return false
53 }
54 for i, xi := range x {
55 if xi != y[i] {
56 return false
57 }
58 }
59 return true
60}

Callers 2

TestTrivialPostingFunction · 0.85
TestMergeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…