Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Section ¶
type Section interface {
Section(key ...string) Section
SectionKeys() []string
SectionExists(key string) bool
SectionDelete(key string) bool
Keys() []string
Exists(key string) bool
Type(key string) ValueType
Int(key string, defValue ...int64) (int64, bool)
UInt(key string, defValue ...uint64) (uint64, bool)
String(key string, defValue ...string) (string, bool)
Bool(key string, defValue ...bool) (bool, bool)
Float(key string, defValue ...float64) (float64, bool)
Bytes(key string, defValue ...[]byte) ([]byte, bool)
Set(key string, value interface{})
Delete(key string) bool
}
Click to show internal directories.
Click to hide internal directories.