(&mut self)
| 19 | impl ElementSource<'_> { |
| 20 | #[inline] |
| 21 | fn next(&mut self) -> Option<NodeId> { |
| 22 | match self { |
| 23 | ElementSource::Slice(iter) => iter.next().copied(), |
| 24 | ElementSource::Single(opt) => opt.take(), |
| 25 | } |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | /// Compile selectors from a string and create an element iterator that yields elements matching these selectors. |
no test coverage detected