web_tools/iter/mod.rs
1//! Help iterating of things
2//!
3//! Some types in the Web APIs are kind of iterable, but don't support Rust's iterator concept.
4//! These helpers can be wrapped around those types, and implement [`IntoIterator`].
5
6mod html_collection;
7mod node_list;
8
9pub use html_collection::*;
10pub use node_list::*;