| 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 | } |
| 71 | |
| 72 | inline Proxy_Iterator& operator+=(difference_type n) { |
| 73 | proxy.move( n ) ; |
nothing calls this directly
no test coverage detected