equality operator (needed for InputIterator)
| 5178 | |
| 5179 | /// equality operator (needed for InputIterator) |
| 5180 | bool operator==(const iteration_proxy_value& o) const |
| 5181 | { |
| 5182 | return anchor == o.anchor; |
| 5183 | } |
| 5184 | |
| 5185 | /// inequality operator (needed for range-based for) |
| 5186 | bool operator!=(const iteration_proxy_value& o) const |
nothing calls this directly
no outgoing calls
no test coverage detected