| 161 | return _tmp; |
| 162 | } |
| 163 | __inline_call |
| 164 | iter_type operator-- ( int ) |
| 165 | { /*---------------- post-decrement */ |
| 166 | iter_type _tmp(*(iter_type*)this); |
| 167 | --*this; |
| 168 | return _tmp; |
| 169 | } |
| 170 | |
| 171 | __inline_call iter_type operator + ( |
| 172 | size_type _off |
nothing calls this directly
no outgoing calls
no test coverage detected