NextAllMatcher gets all the following siblings of each element in the Selection filtered by a matcher. It returns a new Selection object containing the matched elements.
(m Matcher)
| 325 | // Selection filtered by a matcher. It returns a new Selection object |
| 326 | // containing the matched elements. |
| 327 | func (s *Selection) NextAllMatcher(m Matcher) *Selection { |
| 328 | return filterAndPush(s, getSiblingNodes(s.Nodes, siblingNextAll, nil, nil), m) |
| 329 | } |
| 330 | |
| 331 | // Prev gets the immediately preceding sibling of each element in the |
| 332 | // Selection. It returns a new Selection object containing the matched elements. |
nothing calls this directly
no test coverage detected