iof 0.5.0

Read from and write data to console or file in simple formats.
Documentation
1
2
3
4
5
6
7
8
9
use iof::{unwrap, WriteInto};

#[test]
fn try_write_vec() {
    let vec = vec![1, 2, 3];
    unwrap!(vec.try_write());
    let vec = vec![1];
    unwrap!(vec.try_write());
}