MCPcopy Index your code
hub / github.com/cloudfoundry/cli / convertMegabytesFlagToNullInt

Function convertMegabytesFlagToNullInt

command/v7/create_org_quota_command.go:80–86  ·  view source on GitHub ↗
(flag flag.MegabytesWithUnlimited)

Source from the content-addressed store, hash-verified

78}
79
80func convertMegabytesFlagToNullInt(flag flag.MegabytesWithUnlimited) *types.NullInt {
81 if !flag.IsSet {
82 return nil
83 }
84
85 return &types.NullInt{IsSet: true, Value: flag.Value}
86}
87
88func convertIntegerLimitFlagToNullInt(flag flag.IntegerLimit) *types.NullInt {
89 if !flag.IsSet {

Callers 4

ExecuteMethod · 0.85
ExecuteMethod · 0.85
ExecuteMethod · 0.85
ExecuteMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected