MCPcopy Create free account
hub / github.com/diillson/chatcli / stringSliceEqual

Function stringSliceEqual

cli/workspace/memory/projects.go:199–209  ·  view source on GitHub ↗
(a, b []string)

Source from the content-addressed store, hash-verified

197}
198
199func stringSliceEqual(a, b []string) bool {
200 if len(a) != len(b) {
201 return false
202 }
203 for i := range a {
204 if a[i] != b[i] {
205 return false
206 }
207 }
208 return true
209}
210
211func (pt *ProjectTracker) load() {
212 data, err := os.ReadFile(pt.path)

Callers 1

UpsertMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected