Generate each of the `w:style` child elements in document order.
(self)
| 316 | return next(iter(self.xpath(xpath)), None) |
| 317 | |
| 318 | def _iter_styles(self): |
| 319 | """Generate each of the `w:style` child elements in document order.""" |
| 320 | return (style for style in self.xpath("w:style")) |