()
| 50 | } |
| 51 | |
| 52 | func (s *stringArrayValue) String() string { |
| 53 | str, _ := writeAsCSV(*s.value) |
| 54 | return "[" + str + "]" |
| 55 | } |
| 56 | |
| 57 | func stringArrayConv(sval string) (interface{}, error) { |
| 58 | sval = sval[1 : len(sval)-1] |
nothing calls this directly
no test coverage detected