| 7268 | } |
| 7269 | |
| 7270 | table_iterator operator--(int) noexcept // post-- |
| 7271 | { |
| 7272 | table_iterator out{ iter_ }; |
| 7273 | --iter_; |
| 7274 | proxy_instantiated_ = false; |
| 7275 | return out; |
| 7276 | } |
| 7277 | |
| 7278 | TOML_PURE_INLINE_GETTER |
| 7279 | reference operator*() const noexcept |
nothing calls this directly
no outgoing calls
no test coverage detected