AddBackMatcher reduces the previous set of elements on the stack to those that match the matcher, and adds them to the current set. It returns a new Selection object containing the current Selection combined with the filtered previous one
(m Matcher)
| 66 | // It returns a new Selection object containing the current Selection combined |
| 67 | // with the filtered previous one |
| 68 | func (s *Selection) AddBackMatcher(m Matcher) *Selection { |
| 69 | return s.AddSelection(s.prevSel.FilterMatcher(m)) |
| 70 | } |
nothing calls this directly
no test coverage detected