A small library that provides convinience function to write all the elements into a write with buffering
```rust use displaybuffered::displaybuffered;
use std::io::stdout;
display_buffered([10, 20, 30], stdout()).unwrap() ```