MCPcopy Create free account
hub / github.com/dagger/dagger / Sort

Method Sort

core/envvars.go:31–33  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

29type EnvVariables []EnvVariable
30
31func (e EnvVariables) Sort() {
32 sort.Slice(e, func(i, j int) bool { return e[i].Name < e[j].Name })
33}

Calls

no outgoing calls