Crates.io | iter-debug |
lib.rs | iter-debug |
version | 1.0.0 |
source | src |
created_at | 2024-04-03 14:46:32.080307 |
updated_at | 2024-04-03 14:46:32.080307 |
description | impl Debug for iterators using a wrapper |
homepage | https://github.com/1e1001/iter-debug |
repository | https://github.com/1e1001/iter-debug |
max_upload_size | |
id | 1195093 |
size | 19,954 |
Allows debugging iterators without collecting them to a Vec
first, such as for no_std
environments.
println!("{:?}", [1, 2, 3, 4].map(|v| v * 2).debug());
// => [2, 4, 6, 8]
For more information, read the docs.
MIT or Apache 2.0