1// Package csvutil provides fast and idiomatic mapping between CSV and Go values.
2//
3// This package does not provide a CSV parser itself, it is based on the Reader and Writer
4// interfaces which are implemented by eg. std csv package. This gives a possibility
5// of choosing any other CSV writer or reader which may be more performant.
6package csvutil
7