Documentation ¶
Overview ¶
Package flagutil provides utility types for the standard flag package.
Package flagutil provides a collection of types to enhance the standard flag package, such as slices.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Size ¶
type Size uint64
A Size is an integer number of bytes that satisfies the standard library flag.Value interface.
type SizeList ¶
type SizeList []Size
A SizeList is a slice of Size types that satisfies the standard library flag.Value interface.
type StringList ¶
type StringList []string
A StringList is a slice of strings that satisfies the standard library flag.Value interface.
func (*StringList) Set ¶
func (sl *StringList) Set(value string) error
func (*StringList) String ¶
func (sl *StringList) String() string
type StringToRuneMap ¶
A StringToRuneMap satisfies the standard library flag.Value interface.
func (*StringToRuneMap) Set ¶
func (m *StringToRuneMap) Set(value string) error
func (*StringToRuneMap) String ¶
func (m *StringToRuneMap) String() string
Click to show internal directories.
Click to hide internal directories.