OptionValues method returns the values of the option argument with the given name.
(name string)
| 161 | |
| 162 | // OptionValues method returns the values of the option argument with the given name. |
| 163 | func (s *ArgsPropertySource) OptionValues(name string) []string { |
| 164 | return s.args.OptionValues(name) |
| 165 | } |
| 166 | |
| 167 | // NonOptionArgs method returns the non-option arguments. |
| 168 | func (s *ArgsPropertySource) NonOptionArgs() []string { |