display_buffered

A small library that provides convinience function to write all the elements into a write with buffering

Example

```rust use displaybuffered::displaybuffered;

use std::io::stdout;

display_buffered([10, 20, 30], stdout()).unwrap() ```