filterQuery is an XPath query for predicate filter.
| 775 | |
| 776 | // filterQuery is an XPath query for predicate filter. |
| 777 | type filterQuery struct { |
| 778 | Input query |
| 779 | Predicate query |
| 780 | NoPosition bool |
| 781 | |
| 782 | posit int |
| 783 | positmap map[int]int |
| 784 | } |
| 785 | |
| 786 | func (f *filterQuery) do(t iterator) bool { |
| 787 | val := reflect.ValueOf(f.Predicate.Evaluate(t)) |
nothing calls this directly
no outgoing calls
no test coverage detected