iter-debug

Crates.ioiter-debug
lib.rsiter-debug
version1.0.1
created_at2024-04-03 14:46:32.080307+00
updated_at2025-06-03 16:05:24.344814+00
descriptionimpl Debug for iterators using a wrapper
homepagehttps://github.com/1e1001/rsutil/tree/main/iter-debug
repositoryhttps://github.com/1e1001/rsutil/tree/main/iter-debug
max_upload_size
id1195093
size8,324
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, useful in no_std environments or when you're lazy.

# use iter_debug::DebugIterator;
println!("{:?}", [1, 2, 3, 4].into_iter().map(|v| v * 2).debug());
// => [2, 4, 6, 8]

For more information, read the docs.

Changelog

1.0.1

  • Change some testing code
  • rsutil merge documentation overhaul

1.0.0

  • Initial release

License

MIT or Apache 2.0

Commit count: 51

cargo fmt