| 5868 | } |
| 5869 | |
| 5870 | array_iterator operator--(int) noexcept // post-- |
| 5871 | { |
| 5872 | array_iterator out{ iter_ }; |
| 5873 | --iter_; |
| 5874 | return out; |
| 5875 | } |
| 5876 | |
| 5877 | TOML_PURE_INLINE_GETTER |
| 5878 | reference operator*() const noexcept |
nothing calls this directly
no outgoing calls
no test coverage detected