summaryrefslogtreecommitdiff
path: root/vendor/github.com/pborman/getopt/v2/list.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/pborman/getopt/v2/list.go')
-rw-r--r--vendor/github.com/pborman/getopt/v2/list.go32
1 files changed, 32 insertions, 0 deletions
diff --git a/vendor/github.com/pborman/getopt/v2/list.go b/vendor/github.com/pborman/getopt/v2/list.go
new file mode 100644
index 0000000..99a09ef
--- /dev/null
+++ b/vendor/github.com/pborman/getopt/v2/list.go
@@ -0,0 +1,32 @@
+// Copyright 2017 Google Inc. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package getopt
+
+// List creates an option that returns a slice of strings. The parameters
+// passed are converted from a comma separated value list into a slice.
+// Subsequent occurrences append to the list.
+func List(name rune, helpvalue ...string) *[]string {
+ p := []string{}
+ CommandLine.Flag(&p, name, helpvalue...)
+ return &p
+}
+
+func (s *Set) List(name rune, helpvalue ...string) *[]string {
+ p := []string{}
+ s.Flag(&p, name, helpvalue...)
+ return &p
+}
+
+func ListLong(name string, short rune, helpvalue ...string) *[]string {
+ p := []string{}
+ CommandLine.FlagLong(&p, name, short, helpvalue...)
+ return &p
+}
+
+func (s *Set) ListLong(name string, short rune, helpvalue ...string) *[]string {
+ p := []string{}
+ s.FlagLong(&p, name, short, helpvalue...)
+ return &p
+}