MCPcopy Create free account
hub / github.com/compozy/agh / sortedKeys

Function sortedKeys

internal/cli/doc_test.go:229–235  ·  view source on GitHub ↗
(m map[string]bool)

Source from the content-addressed store, hash-verified

227}
228
229func sortedKeys(m map[string]bool) []string {
230 keys := make([]string, 0, len(m))
231 for k := range m {
232 keys = append(keys, k)
233 }
234 return keys
235}

Calls 1

appendFunction · 0.85

Tested by

no test coverage detected