Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Arbitrary ¶
type Arbitrary struct {
// contains filtered or unexported fields
}
Arbitrary is a interface{} wrapped with a sync.RWMutex.
type Bool ¶
type Bool struct {
// contains filtered or unexported fields
}
Bool is a bool wrapped with a sync.RWMutex.
type Duration ¶
type Duration struct {
// contains filtered or unexported fields
}
Duration is a time.Duration wrapped with a sync.RWMutex.
type Int ¶
type Int struct {
// contains filtered or unexported fields
}
Int is a int wrapped with a sync.RWMutex.
type StringSlice ¶
type StringSlice struct {
// contains filtered or unexported fields
}
StringSlice is a []string wrapped with a sync.RWMutex.
func (*StringSlice) Get ¶
func (x *StringSlice) Get() []string
Get fetches the stored value in a concurrent safe manner
func (*StringSlice) Set ¶
func (x *StringSlice) Set(thing []string)
Set sets the stored value in a concurrent safe manner
Click to show internal directories.
Click to hide internal directories.