iter-debug

Crates.ioiter-debug
lib.rsiter-debug
version1.0.0
sourcesrc
created_at2024-04-03 14:46:32.080307
updated_at2024-04-03 14:46:32.080307
descriptionimpl Debug for iterators using a wrapper
homepagehttps://github.com/1e1001/iter-debug
repositoryhttps://github.com/1e1001/iter-debug
max_upload_size
id1195093
size19,954
Michael (1e1001)

documentation

https://docs.rs/iter-debug

README

iter-debug

Repository Crates.io docs.rs MIT OR Apache-2.0

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.

Changelog

1.0.0

  • Initial release

License

MIT or Apache 2.0

Commit count: 1

cargo fmt