Intersection is an alias for FilterSelection.
(sel *Selection)
| 72 | |
| 73 | // Intersection is an alias for FilterSelection. |
| 74 | func (s *Selection) Intersection(sel *Selection) *Selection { |
| 75 | return s.FilterSelection(sel) |
| 76 | } |
| 77 | |
| 78 | // Has reduces the set of matched elements to those that have a descendant |
| 79 | // that matches the selector. |