MCPcopy Create free account
hub / github.com/docker/cli / sortedKeys

Function sortedKeys

cli/compose/loader/loader.go:237–244  ·  view source on GitHub ↗
(set map[string]bool)

Source from the content-addressed store, hash-verified

235}
236
237func sortedKeys(set map[string]bool) []string {
238 keys := make([]string, 0, len(set))
239 for key := range set {
240 keys = append(keys, key)
241 }
242 sort.Strings(keys)
243 return keys
244}
245
246// GetDeprecatedProperties returns the list of any deprecated properties that
247// are used in the compose files.

Callers 1

GetUnsupportedPropertiesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…