# iter-debug
[](https://github.com/1e1001/rsutil/tree/main/iter-debug)
[](https://crates.io/crates/iter-debug)
[](https://docs.rs/iter-debug)
[](#License)
Allows debugging iterators without collecting them to a [`Vec`] first,
useful in `no_std` environments or when you're lazy.
```rust
println!("{:?}", [1, 2, 3, 4].into_iter().map(|v| v * 2).debug());
// => [2, 4, 6, 8]
```
For more information, [read the docs](https://docs.rs/iter-debug).
## Changelog
### 1.0.2
- Do not error on repeated formats
### 1.0.1
- Change some testing code
- `rsutil` merge documentation overhaul
### 1.0.0
- Initial release
## License
[MIT](../LICENSE-MIT) or [Apache 2.0](../LICENSE-APACHE)