Skip to content

Commit 68f4136

Browse files
Add SliceValue Comments
1 parent b22fc70 commit 68f4136

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

flag.go

+6
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,15 @@ type Value interface {
190190
Type() string
191191
}
192192

193+
// SliceValue is a secondary interface to all flags which hold a list
194+
// of values. This allows full control over the value of list flags,
195+
// and avoids complicated marshalling and unmarshalling to csv.
193196
type SliceValue interface {
197+
// Append adds the specified value to the end of the flag value list.
194198
Append(string) error
199+
// Replace will fully overwrite any data currently in the flag value list.
195200
Replace([]string) error
201+
// GetSlice returns the flag value list as an array of strings.
196202
GetSlice() []string
197203
}
198204

0 commit comments

Comments
 (0)