Returns ancestorsOrSelf.drop(1)
Returns all ancestor elements or self, starting with this element, then the parent, if any, and ending with the root element.
Returns the first found ancestor element obeying the given predicate, if any, wrapped in an Option.
Returns the first found ancestor element obeying the given predicate, if any, wrapped in an Option. Searching starts with the parent of this element, if applicable, then the grandparent, if applicable, and so on.
Returns the first found ancestor-or-self element obeying the given predicate, if any, wrapped in an Option.
Returns the first found ancestor-or-self element obeying the given predicate, if any, wrapped in an Option. Searching starts with this element, then the parent, if applicable, and so on.
Returns the equivalent parentOption.get
, throwing an exception if this is the root element
Returns the parent element, if any, wrapped in an Option
API trait for elements that can be asked for the ancestor elements, if any.
This trait only knows about elements, not about documents as root element parents.
The captured element subtype