MCPcopy Create free account
hub / github.com/Chat2AnyLLM/code-agent-manager / sortStrings

Function sortStrings

internal/entities/apps.go:501–507  ·  view source on GitHub ↗
(s []string)

Source from the content-addressed store, hash-verified

499}
500
501func sortStrings(s []string) {
502 for i := 1; i < len(s); i++ {
503 for j := i; j > 0 && s[j-1] > s[j]; j-- {
504 s[j-1], s[j] = s[j], s[j-1]
505 }
506 }
507}

Callers 2

InstructionAppsFunction · 0.85
SupportedAppsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected