package
0.0.0-20241212173216-745cb4b42230
Repository: https://github.com/ibiscum/go-programming-cookbook-second-edition.git
Documentation: pkg.go.dev

# Functions

AddMoviesFromText uses the CSV parser with a string.
ReadCSV gives shows some examples of processing CSV that is passed in as an io.Reader.
WriteCSVBuffer returns a buffer csv for a set of books.
WriteCSVOutput initializes a set of books and writes the to os.Stdout.

# Structs

A Book has an Author and Title.
Movie will hold our parsed CSV.

# Type aliases

Books is a named type for an array of books.