Documentation ¶ Overview ¶ File functions. Map functions. Index ¶ Constants func ReadLines(name string) (lines []string, err error) type Map func NewMap(s string) (m *Map, err error) func (m *Map) GetInt64(key string) (value int64) func (m *Map) GetString(key string) (value string) func (m *Map) GetTime(key string) (value time.Time) Constants ¶ View Source const ( KeySep = "/" ValSep = "\n" ) Variables ¶ This section is empty. Functions ¶ func ReadLines ¶ func ReadLines(name string) (lines []string, err error) Types ¶ type Map ¶ type Map struct { // contains filtered or unexported fields } func NewMap ¶ func NewMap(s string) (m *Map, err error) func (*Map) GetInt64 ¶ func (m *Map) GetInt64(key string) (value int64) func (*Map) GetString ¶ func (m *Map) GetString(key string) (value string) func (*Map) GetTime ¶ func (m *Map) GetTime(key string) (value time.Time) Source Files ¶ View all Source files file.go map.go Click to show internal directories. Click to hide internal directories.