| 63 | } |
| 64 | |
| 65 | inline Proxy_Iterator operator+(difference_type n) const { |
| 66 | return Proxy_Iterator( PROXY(*proxy.parent, proxy.index + n) ) ; |
| 67 | } |
| 68 | inline Proxy_Iterator operator-(difference_type n) const { |
| 69 | return Proxy_Iterator( PROXY(*proxy.parent, proxy.index - n) ) ; |
| 70 | } |
nothing calls this directly
no test coverage detected