display_buffered 0.1.0

A small library that provides convinience function to write all the elements into a write with buffering
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# display_buffered

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

## Example

```rust
use display_buffered::display_buffered;

use std::io::stdout;

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