# Functions
Load creates a Tree from a string.
LoadBytes creates a Tree from a []byte.
LoadFile creates a Tree from a file.
LoadReader creates a Tree from any io.Reader.
LocalDateOf returns the LocalDate in which a time occurs in that time's location.
LocalDateTimeOf returns the LocalDateTime in which a time occurs in that time's location.
LocalTimeOf returns the LocalTime representing the time of day in which a time occurs in that time's location.
Marshal returns the TOML encoding of v.
NewDecoder returns a new decoder that reads from r.
NewEncoder returns a new encoder that writes to w.
ParseLocalDate parses a string in RFC3339 full-date format and returns the date value it represents.
ParseLocalDateTime parses a string and returns the LocalDateTime it represents.
ParseLocalTime parses a string and returns the time value it represents.
TreeFromMap initializes a new Tree object using the given map.
Unmarshal parses the TOML-encoded data and stores the result in the value pointed to by v.
ValueStringRepresentation transforms an interface{} value into its toml string representation.
# Constants
Sort fields alphabetically.
Preserve the order the fields are encountered.
# Structs
Decoder reads and decodes TOML values from an input stream.
Encoder writes TOML values to an output stream.
A LocalDate represents a date (year, month, day).
A LocalDateTime represents a date and time.
A LocalTime represents a time with nanosecond precision.
Position of a document element within a TOML document.
SetOptions arguments are supplied to the SetWithOptions and SetPathWithOptions functions to modify marshalling behaviour.
Tree is the result of the parsing of a TOML file.
# Interfaces
Marshaler is the interface implemented by types that can marshal themselves into valid TOML.
Unmarshaler is the interface implemented by types that can unmarshal a TOML description of themselves.
# Type aliases
No description provided by the author
PubTOMLValue wrapping tomlValue in order to access all properties from outside.
PubTree wrapping Tree in order to access all properties from outside.