MCPcopy Index your code
hub / github.com/jetify-com/devbox / All

Function All

internal/boxcli/featureflag/feature.go:78–84  ·  view source on GitHub ↗

All returns a map of all known features flags and whether they're enabled.

()

Source from the content-addressed store, hash-verified

76
77// All returns a map of all known features flags and whether they're enabled.
78func All() map[string]bool {
79 m := make(map[string]bool, len(features))
80 for name, feat := range features {
81 m[name] = feat.Enabled()
82 }
83 return m
84}

Callers 1

postRunMethod · 0.92

Calls 1

EnabledMethod · 0.80

Tested by

no test coverage detected