MCPcopy Index your code
hub / github.com/larksuite/cli / sortedKeys

Function sortedKeys

internal/skillscheck/sync.go:496–503  ·  view source on GitHub ↗
(values map[string]bool)

Source from the content-addressed store, hash-verified

494}
495
496func sortedKeys(values map[string]bool) []string {
497 out := make([]string, 0, len(values))
498 for value := range values {
499 out = append(out, value)
500 }
501 sort.Strings(out)
502 return out
503}

Callers 7

ParseGlobalSkillsJSONFunction · 0.70
parseGlobalSkillsListFunction · 0.70
parseOfficialSkillsListFunction · 0.70
PlanSyncFunction · 0.70
uniqueSortedFunction · 0.70
intersectionFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected