(label string)
| 20 | } |
| 21 | |
| 22 | func (p pickerOptions) getValue(label string) string { |
| 23 | for _, o := range p { |
| 24 | if o.label == label { |
| 25 | return o.value |
| 26 | } |
| 27 | } |
| 28 | return "" |
| 29 | } |
| 30 | |
| 31 | func (p pickerOptions) getValues(labels ...string) []string { |
| 32 | var values []string |
no outgoing calls