in src/main/java/org/apache/commons/csv/CSVPrinter.java [487:495]
public void printRecords(final Stream<?> values) throws IOException {
values.forEachOrdered(t -> {
try {
printRecordObject(t);
} catch (final IOException e) {
throw IOUtils.rethrow(e);
}
});
}