options

package
v2.0.0-...-98cc131 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 26, 2023 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CompleteOptions

func CompleteOptions(opt Options) error

Types

type Condition

type Condition interface {
	IsTrue() bool
}

func And

func And(conditions ...Condition) Condition

func Or

func Or(conditions ...Condition) Condition

type ConditionFunction

type ConditionFunction func() bool

func (ConditionFunction) IsTrue

func (f ConditionFunction) IsTrue() bool

type Flag

type Flag bool

func (Flag) IsTrue

func (f Flag) IsTrue() bool

type OptionSelector

type OptionSelector func(provider OptionSetProvider) bool

func Always

func Always() OptionSelector

func Never

func Never() OptionSelector

func Not

type OptionSet

type OptionSet []Options

func (OptionSet) AddFlags

func (s OptionSet) AddFlags(fs *pflag.FlagSet)

func (OptionSet) AsOptionSet

func (s OptionSet) AsOptionSet() OptionSet

func (OptionSet) Get

func (s OptionSet) Get(proto interface{}) bool

Get extracts the option for a given target. This might be a

  • pointer to a struct implementing the Options interface which will fill the struct with a copy of the options OR
  • a pointer to such a pointer which will be filled with the pointer to the actual member of the OptionSet.

func (OptionSet) Options

func (s OptionSet) Options(proto Options) interface{}

func (OptionSet) ProcessOnOptions

func (s OptionSet) ProcessOnOptions(f OptionsProcessor) error

func (OptionSet) Usage

func (s OptionSet) Usage() string

type OptionSetProvider

type OptionSetProvider interface {
	AsOptionSet() OptionSet
}

type OptionWithCLIContextCompleter

type OptionWithCLIContextCompleter interface {
	Configure(ctx clictx.Context) error
}

type OptionWithOutputContextCompleter

type OptionWithOutputContextCompleter interface {
	Complete(ctx out.Context) error
}

type Options

type Options interface {
	AddFlags(fs *pflag.FlagSet)
}

type OptionsProcessor

type OptionsProcessor func(Options) error

func CompleteOptionsWithCLIContext

func CompleteOptionsWithCLIContext(ctx clictx.Context) OptionsProcessor

type SimpleOptionCompleter

type SimpleOptionCompleter interface {
	Complete() error
}

type Usage

type Usage interface {
	Usage() string
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL