()
| 448 | } |
| 449 | |
| 450 | func (ev storeWithRefPoolValues) StringArray() []string { |
| 451 | if vv := ev.get(); vv != nil { |
| 452 | return vv.StringArray() |
| 453 | } |
| 454 | |
| 455 | return ev.Values.StringArray() |
| 456 | } |
| 457 | |
| 458 | func (ev storeWithRefPoolValues) Slice() []interface{} { |
| 459 | if vv := ev.get(); vv != nil { |
nothing calls this directly
no test coverage detected