pflagValueSet is a wrapper around *pflag.ValueSet that implements FlagValueSet.
| 20 | // pflagValueSet is a wrapper around *pflag.ValueSet |
| 21 | // that implements FlagValueSet. |
| 22 | type pflagValueSet struct { |
| 23 | flags *pflag.FlagSet |
| 24 | } |
| 25 | |
| 26 | // VisitAll iterates over all *pflag.Flag inside the *pflag.FlagSet. |
| 27 | func (p pflagValueSet) VisitAll(fn func(flag FlagValue)) { |
nothing calls this directly
no outgoing calls
no test coverage detected