lines_writer
This crate lets you write an iterator into a LinesWriter, with each item on a line.
The trait LinesWriter is implemented for all the types that implement std::io::Write.
Simply call write_lines on the writer and pass an iterator as argument.
Examples
use LinesWriter;
use LinesWriter;
Contributing
Feel free to contribute to this project with pull requests and/or issues. All contribution should be under a license compatible with the GNU GPLv3.
Why did you chose the GNU GPL instead of a more permissive license like Apache/MIT? Because I wrote a piece of free software and I don't want it to be used as the basis of a proprietary one. Improvements of this work or simulation software written using desim as a library should be free software as well.
Changes
0.1.0 First release