This commit is contained in:
Peter van Hardenberg
2014-10-28 16:07:33 -07:00
parent d424a20602
commit d3f3b23a18
139 changed files with 25052 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package flags
import (
"reflect"
)
// Arg represents a positional argument on the command line.
type Arg struct {
// The name of the positional argument (used in the help)
Name string
// A description of the positional argument (used in the help)
Description string
value reflect.Value
tag multiTag
}
func (a *Arg) isRemaining() bool {
return a.value.Type().Kind() == reflect.Slice
}