Filter filters all values from the source using a list of operations.
| 292 | |
| 293 | // Filter filters all values from the source using a list of operations. |
| 294 | type Filter struct { |
| 295 | From Shape // source that will be filtered |
| 296 | Filters []ValueFilter // filters to apply |
| 297 | } |
| 298 | |
| 299 | func (s Filter) BuildIterator(qs graph.QuadStore) graph.Iterator { |
| 300 | if IsNull(s.From) { |
nothing calls this directly
no outgoing calls
no test coverage detected