in src/main/java/org/apache/commons/csv/CSVPrinter.java [298:307]
public synchronized void printRecord(final Stream<?> values) throws IOException {
values.forEachOrdered(t -> {
try {
print(t);
} catch (final IOException e) {
throw IOUtils.rethrow(e);
}
});
println();
}