# Functions
Add adds a flag configuration to Entries.
All returns all configs.
Bool returns the bool value of a given key path or false if the path does not exist or if the value is not a valid bool representation.
BoolMap returns the map[string]bool value of a given key path or an empty map[string]bool if the path does not exist or if the value is not a valid bool map.
Bools returns the []bool slice value of a given key path or an empty []bool slice if the path does not exist or if the value is not a valid bool slice.
Bytes returns the []byte value of a given key path or an empty []byte slice if the path does not exist or if the value is not a valid string.
Duration returns the time.Duration value of a given key path assuming that the key contains a valid numeric value.
Entries returns the flag configuration list as an array.
Exists returns true if the given key path exists in the conf map.
Float64 returns the float64 value of a given key path or 0 if the path does not exist or if the value is not a valid float64.
Float64Map returns the map[string]float64 value of a given key path or an empty map[string]float64 if the path does not exist or if the value is not a valid float64 map.
Float64s returns the []float64 slice value of a given key path or an empty []float64 slice if the path does not exist or if the value is not a valid float64 slice.
Get returns interface{} value.
Int returns the int value of a given key path or 0 if the path does not exist or if the value is not a valid int.
Int64 returns the int64 value of a given key path or 0 if the path does not exist or if the value is not a valid int64.
Int64Map returns the map[string]int64 value of a given key path or an empty map[string]int64 if the path does not exist or if the value is not a valid int64 map.
Int64s returns the []int64 slice value of a given key path or an empty []int64 slice if the path does not exist or if the value is not a valid int slice.
IntMap returns the map[string]int value of a given key path or an empty map[string]int if the path does not exist or if the value is not a valid int map.
Ints returns the []int slice value of a given key path or an empty []int slice if the path does not exist or if the value is not a valid int slice.
No description provided by the author
No description provided by the author
NewOptionsWithPath unmarshal options based a given multi key paths.
No description provided by the author
SetEntries.
String returns the string value of a given key path or "" if the path does not exist or if the value is not a valid string.
StringMap returns the map[string]string value of a given key path or an empty map[string]string if the path does not exist or if the value is not a valid string map.
Strings returns the []string slice value of a given key path or an empty []string slice if the path does not exist or if the value is not a valid string slice.
Time attempts to parse the value of a given key path and return time.Time representation.
Unmarshal unmarshals the given struct using the mapstructure lib.
UnmarshalWithPath unmarshals a given key path into the given struct using the mapstructure lib.
WithHide sets hide option is true to config.
# Interfaces
No description provided by the author
# Type aliases
Option is a func to set values in options.