String satisfies flag.Value with a human-readable rendering; not meant to round-trip through Set.
()
| 140 | // String satisfies flag.Value with a human-readable rendering; not meant to |
| 141 | // round-trip through Set. |
| 142 | func (f *StringArrayFlag) String() string { |
| 143 | return fmt.Sprintf("%v", *f) |
| 144 | } |
| 145 | |
| 146 | // Set splits comma-separated values onto the accumulator, matching the original |
| 147 | // fieldalignment CLI (`a,b,c` is equivalent to three repeats). Empty entries |
no outgoing calls