MCPcopy Create free account
hub / github.com/GongShichen/LuminaCode / stringSet

Function stringSet

agent/definitions.go:72–78  ·  view source on GitHub ↗
(values ...string)

Source from the content-addressed store, hash-verified

70}
71
72func stringSet(values ...string) map[string]struct{} {
73 out := make(map[string]struct{}, len(values))
74 for _, value := range values {
75 out[value] = struct{}{}
76 }
77 return out
78}

Callers 5

task_runtime.goFile · 0.85
subagent.goFile · 0.85
recall_utils.goFile · 0.85
definitions.goFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected