ValueFilter is an interface for iterator wrappers that can filter node values.
| 287 | |
| 288 | // ValueFilter is an interface for iterator wrappers that can filter node values. |
| 289 | type ValueFilter interface { |
| 290 | BuildIterator(qs graph.QuadStore, it graph.Iterator) graph.Iterator |
| 291 | } |
| 292 | |
| 293 | // Filter filters all values from the source using a list of operations. |
| 294 | type Filter struct { |
nothing calls this directly
no outgoing calls
no test coverage detected