Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Bool ¶
type Bool struct {
// contains filtered or unexported fields
}
Bool represents a boolean value
type Int ¶
type Int struct {
// contains filtered or unexported fields
}
Int represents an int type
type String ¶
type String struct {
// contains filtered or unexported fields
}
String represents a string type
type StringSlice ¶
type StringSlice struct {
// contains filtered or unexported fields
}
StringSlice represents a string slice type
func NewStringSlice ¶
func NewStringSlice(value []string) *StringSlice
NewStringSlice creates a new wrapper for a string slice
func (*StringSlice) GetElement ¶
func (s *StringSlice) GetElement(index int) (value string)
GetElement returns the value at the given element index
func (*StringSlice) GetValue ¶
func (s *StringSlice) GetValue() (value []string)
GetValue returns the value originally given
func (*StringSlice) Length ¶
func (s *StringSlice) Length() (length int)
Length returns the number of elements in the slice
func (*StringSlice) SetValue ¶
func (s *StringSlice) SetValue(value []string)
SetValue sets the value
Click to show internal directories.
Click to hide internal directories.