package
2.8.0+incompatible
Repository: https://github.com/davidjfarr/gomplate.git
Documentation: pkg.go.dev

# Functions

CSV - Unmarshal CSV parameters: delim - (optional) the (single-character!) field delimiter, defaults to "," in - the CSV-format string to parse returns: an array of rows, which are arrays of cells (strings).
CSVByColumn - Unmarshal CSV in a Columnar form parameters: delim - (optional) the (single-character!) field delimiter, defaults to "," hdr - (optional) comma-separated list of column names, set to "" to get auto-named columns (A-Z), omit to use the first line in - the CSV-format string to parse returns: a map of columns, indexed by the header name.
CSVByRow - Unmarshal CSV in a row-oriented form parameters: delim - (optional) the (single-character!) field delimiter, defaults to "," hdr - (optional) comma-separated list of column names, set to "" to get auto-named columns (A-Z), omit to use the first line in - the CSV-format string to parse returns: an array of rows, indexed by the header name.
JSON - Unmarshal a JSON Object.
JSONArray - Unmarshal a JSON Array.
NewData - constructor for Data.
ToCSV -.
ToJSON - Stringify a struct as JSON.
ToJSONPretty - Stringify a struct as JSON (indented).
TOML - Unmarshal a TOML Object.
ToTOML - Stringify a struct as TOML.
ToYAML - Stringify a struct as YAML.
YAML - Unmarshal a YAML Object.
YAMLArray - Unmarshal a YAML Array.

# Structs

Data -.
Source - a data source.