MCPcopy
hub / github.com/im2nguyen/rover / String

Method String

main.go:34–40  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

32type arrayFlags []string
33
34func (i arrayFlags) String() string {
35 var ts []string
36 for _, el := range i {
37 ts = append(ts, el)
38 }
39 return strings.Join(ts, ",")
40}
41
42func (i *arrayFlags) Set(value string) error {
43 *i = append(*i, value)

Callers 1

mainFunction · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected